Remove redundant output path mirror from standalone config section

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.
This commit is contained in:
Broque Thomas 2026-04-18 17:53:07 -07:00
parent db7714c4db
commit f8e4adde41
2 changed files with 1 additions and 15 deletions

View file

@ -4421,13 +4421,8 @@
<p>SoulSync manages your library directly without an external media server. Downloads and imports are added to the library automatically.</p>
</div>
</div>
<div class="form-group">
<label>Library Folder (Output Path):</label>
<input type="text" id="soulsync-transfer-path" disabled placeholder="Set in Paths section below">
<small>Files in this folder are your library. Configure the path in the Paths section.</small>
</div>
<div class="form-actions">
<button class="test-button" onclick="testConnection('soulsync')">Verify Folder</button>
<button class="test-button" onclick="testConnection('soulsync')">Verify Output Folder</button>
</div>
</div>

View file

@ -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();
}