mirror of
https://github.com/gilbertchen/duplicacy
synced 2025-12-23 03:33:15 +00:00
Should include storage name when looking up passwords for non-default storage
This commit is contained in:
@@ -158,6 +158,10 @@ func GetPassword(preference Preference, passwordType string, prompt string,
|
|||||||
return password
|
return password
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if preference.Name != "default" {
|
||||||
|
passwordID = preference.Name + "_" + passwordID
|
||||||
|
}
|
||||||
|
|
||||||
if resetPassword && !RunInBackground {
|
if resetPassword && !RunInBackground {
|
||||||
keyringSet(passwordID, "")
|
keyringSet(passwordID, "")
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user