mirror of
https://github.com/jkl1337/duplicacy.git
synced 2026-01-05 05:04:42 -06:00
FindPreference should return the address of the Preference object for setPreference to work
This commit is contained in:
@@ -108,9 +108,9 @@ func SavePreferences() (bool) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func FindPreference(name string) (*Preference) {
|
func FindPreference(name string) (*Preference) {
|
||||||
for _, preference := range Preferences {
|
for i, preference := range Preferences {
|
||||||
if preference.Name == name || preference.StorageURL == name {
|
if preference.Name == name || preference.StorageURL == name {
|
||||||
return &preference
|
return &Preferences[i]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user