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

@@ -48,6 +48,7 @@ class AudioScrobbler : public QObject {
bool ScrobbleButton() const { return scrobble_button_; }
bool LoveButton() const { return love_button_; }
int SubmitDelay() const { return submit_delay_; }
bool PreferAlbumArtist() const { return prefer_albumartist_; }
void UpdateNowPlaying(const Song &song);
void ClearPlaying();
@@ -87,6 +88,7 @@ class AudioScrobbler : public QObject {
bool scrobble_button_;
bool love_button_;
int submit_delay_;
bool prefer_albumartist_;
};