Remove stream schema setting and add Add HI_RES option

This commit is contained in:
Jonas Kvinge
2019-05-14 18:45:38 +02:00
parent 7cc9c75d15
commit 2ad1d27a59
4 changed files with 1 additions and 46 deletions

View File

@@ -127,7 +127,6 @@ void TidalService::ReloadSettings() {
songssearchlimit_ = s.value("songssearchlimit", 100).toInt();
fetchalbums_ = s.value("fetchalbums", false).toBool();
coversize_ = s.value("coversize", "320x320").toString();
streamurl_ = s.value("streamurl", "default").toString();
s.endGroup();
}
@@ -140,7 +139,6 @@ void TidalService::LoadSessionID() {
session_id_ = s.value("session_id").toString();
user_id_ = s.value("user_id").toInt();
country_code_ = s.value("country_code").toString();
clientuniquekey_ = Utilities::GetRandomStringWithChars(12).toLower();
s.endGroup();
}
@@ -257,7 +255,6 @@ void TidalService::HandleAuthReply(QNetworkReply *reply) {
country_code_ = json_obj["countryCode"].toString();
session_id_ = json_obj["sessionId"].toString();
user_id_ = json_obj["userId"].toInt();
clientuniquekey_ = Utilities::GetRandomStringWithChars(12).toLower();
QSettings s;
s.beginGroup(TidalSettingsPage::kSettingsGroup);
@@ -1039,8 +1036,6 @@ void TidalService::StreamURLReceived(QNetworkReply *reply, const int song_id, co
filetype = Song::FileType_Stream;
}
if (new_url.scheme() != streamurl_ && streamurl_.toLower() != "default") new_url.setScheme(streamurl_);
emit StreamURLFinished(original_url, new_url, filetype);
}