QobuzService: Make DecodeAppSecret const

This commit is contained in:
Jonas Kvinge
2023-03-19 20:31:31 +01:00
parent ae87c1b578
commit 19c9f9698d
2 changed files with 2 additions and 2 deletions

View File

@@ -258,7 +258,7 @@ void QobuzService::ReloadSettings() {
}
QString QobuzService::DecodeAppSecret(const QString &app_secret_base64) {
QString QobuzService::DecodeAppSecret(const QString &app_secret_base64) const {
const QByteArray appid = app_id().toUtf8();
const QByteArray app_secret_binary = QByteArray::fromBase64(app_secret_base64.toUtf8());