From 971bbe844368c7aa188a790e64ee242676fbda4f Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Fri, 31 Oct 2025 17:05:03 -0700 Subject: [PATCH] Fix function typo Extra parameter got added accidentally where it shouldn't have --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index e8e09bcbe..3adcec8d3 100644 --- a/installer.py +++ b/installer.py @@ -1442,7 +1442,7 @@ def get_version(force=False): 'updated': updated, 'hash': githash, 'branch': branch_name.replace('\n', ''), - 'url': origin.replace('\n', '').removesuffix('.git', '') + '/tree/' + branch_name.replace('\n', '') + 'url': origin.replace('\n', '').removesuffix('.git') + '/tree/' + branch_name.replace('\n', '') } except Exception: version = { 'app': 'sd.next', 'version': 'unknown', 'branch': 'unknown' }