1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-14 23:33:18 +00:00

Should include storage name when looking up passwords for non-default storage

This commit is contained in:
Gilbert Chen
2017-09-11 21:43:34 -04:00
parent cecb73071e
commit d1817ae557

View File

@@ -158,6 +158,10 @@ func GetPassword(preference Preference, passwordType string, prompt string,
return password
}
if preference.Name != "default" {
passwordID = preference.Name + "_" + passwordID
}
if resetPassword && !RunInBackground {
keyringSet(passwordID, "")
} else {