From f8e4adde41d47d694126b7a2724c313711e28d64 Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Sat, 18 Apr 2026 17:53:07 -0700 Subject: [PATCH] Remove redundant output path mirror from standalone config section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The disabled path field on the Connections tab was showing stale data (always ./Transfer) because it read from the DOM before settings loaded. Removed it entirely — the output path is configured on the Downloads tab. Standalone section now just shows description + verify button. --- webui/index.html | 7 +------ webui/static/script.js | 9 --------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/webui/index.html b/webui/index.html index 5de14518..5d4744a3 100644 --- a/webui/index.html +++ b/webui/index.html @@ -4421,13 +4421,8 @@

SoulSync manages your library directly without an external media server. Downloads and imports are added to the library automatically.

-
- - - Files in this folder are your library. Configure the path in the Paths section. -
- +
diff --git a/webui/static/script.js b/webui/static/script.js index 4d26cff3..0f8e6ef3 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -6385,15 +6385,6 @@ function toggleServer(serverType) { loadNavidromeMusicFolders(); } - // Show Transfer path for SoulSync standalone - if (serverType === 'soulsync') { - const transferInput = document.getElementById('soulsync-transfer-path'); - const transferPathEl = document.getElementById('transfer-path'); - if (transferInput && transferPathEl) { - transferInput.value = transferPathEl.value || './Transfer'; - } - } - // Auto-save after server toggle change debouncedAutoSaveSettings(); }