Use hex in password auth for subsonic. Fixes #4589

This commit is contained in:
Chocobozzz 2014-10-24 09:47:03 +02:00
parent 1ad5884b39
commit 15a8af9bbb
1 changed files with 1 additions and 1 deletions

View File

@ -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", password_);
url.addQueryItem("p", QString("enc:" + password_.toAscii().toHex()));
return url;
}