mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-21 08:45:06 -05:00
fix encoding issue with FTP credentials
This commit is contained in:
parent
44b0a7b898
commit
e96fc44cf3
@ -121,8 +121,8 @@ namespace keepass2android.Io
|
||||
return new ConnectionSettings()
|
||||
{
|
||||
EncryptionMode = (FtpEncryptionMode) int.Parse(tokens[2]),
|
||||
Username = tokens[0],
|
||||
Password = tokens[1]
|
||||
Username = WebUtility.UrlDecode(tokens[0]),
|
||||
Password = WebUtility.UrlDecode(tokens[1])
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user