Add option to prefer album artist when sending scrobbles

Fixes #274
This commit is contained in:
Jonas Kvinge
2019-10-19 02:56:23 +02:00
parent 5844616ea8
commit e3a4cf1cf5
7 changed files with 27 additions and 6 deletions

View File

@@ -72,6 +72,7 @@ void AudioScrobbler::ReloadSettings() {
scrobble_button_ = s.value("scrobble_button", false).toBool();
love_button_ = s.value("love_button", false).toBool();
submit_delay_ = s.value("submit", 0).toInt();
prefer_albumartist_ = s.value("albumartist", false).toBool();
s.endGroup();
emit ScrobblingEnabledChanged(enabled_);