# HG changeset patch # User Olaf Wintermann # Date 1730097465 -3600 # Node ID 98d0e2516f4e87cae7d51d38b370ca1114dce728 # Parent d0eeb2b98dae80762e852d7a287b57c56a17a284 fix missing credentials in repository settings diff -r d0eeb2b98dae -r 98d0e2516f4e application/settings.c --- a/application/settings.c Sun Oct 27 20:41:41 2024 +0100 +++ b/application/settings.c Mon Oct 28 07:37:45 2024 +0100 @@ -579,6 +579,10 @@ cx_foreach(PwdIndexEntry*, entry, i) { ui_list_append(settings->repo_credentials, entry->id); } + i = cxListIterator(pwd->locations); + cx_foreach(PwdIndexEntry*, entry, i) { + ui_list_append(settings->repo_credentials, entry->id); + } if(settings->repo_credentials->update) { ui_list_update(settings->repo_credentials);