From e8fa92950d5ca723fedf52e366269e51b93cf4b3 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 5 May 2026 01:18:07 +0200 Subject: [PATCH] Fixed missing unquote --- RNS/Utilities/rngit/pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/RNS/Utilities/rngit/pages.py b/RNS/Utilities/rngit/pages.py index cd1231fc..e7ec68a2 100644 --- a/RNS/Utilities/rngit/pages.py +++ b/RNS/Utilities/rngit/pages.py @@ -1279,6 +1279,7 @@ class NomadNetworkNode(): repo_name = data.get("var_r", "") if data else "" tag = data.get("var_t", "") if data else "" artifact = data.get("var_a", "") if data else "" + artifact = urllib.parse.unquote_plus(artifact) if "/" in artifact: return None if not group_name or not repo_name or not tag or not artifact: None