mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
fix: check key path condition bug
This commit is contained in:
+3
-3
@@ -283,9 +283,9 @@ func PickCustomBrowser(browserName, cusProfile, cusKey string) ([]Browser, error
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
}
|
||||
if err := checkKeyPath(cusKey); err != nil {
|
||||
return nil, err
|
||||
if err := checkKeyPath(cusKey); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
}
|
||||
b, err := choice.New(cusProfile, cusKey, choice.Name, choice.Storage)
|
||||
browsers = append(browsers, b)
|
||||
|
||||
Reference in New Issue
Block a user