mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-24 18:22:21 -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()
|
return new ConnectionSettings()
|
||||||
{
|
{
|
||||||
EncryptionMode = (FtpEncryptionMode) int.Parse(tokens[2]),
|
EncryptionMode = (FtpEncryptionMode) int.Parse(tokens[2]),
|
||||||
Username = tokens[0],
|
Username = WebUtility.UrlDecode(tokens[0]),
|
||||||
Password = tokens[1]
|
Password = WebUtility.UrlDecode(tokens[1])
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user