Use utf8 for password instead of ascii
This commit is contained in:
parent
15a8af9bbb
commit
0b8e566544
@ -190,7 +190,7 @@ QUrl SubsonicService::BuildRequestUrl(const QString& view) const {
|
||||
url.addQueryItem("v", kApiVersion);
|
||||
url.addQueryItem("c", kApiClientName);
|
||||
url.addQueryItem("u", username_);
|
||||
url.addQueryItem("p", QString("enc:" + password_.toAscii().toHex()));
|
||||
url.addQueryItem("p", QString("enc:" + password_.toUtf8().toHex()));
|
||||
return url;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user