Add option to scrobbler setting for showing login error

Fixes #430
This commit is contained in:
Jonas Kvinge
2020-05-12 22:25:00 +02:00
parent a950ec3bd5
commit fcea3a0877
5 changed files with 16 additions and 2 deletions

View File

@@ -46,6 +46,7 @@ class AudioScrobbler : public QObject {
bool LoveButton() const { return love_button_; }
int SubmitDelay() const { return submit_delay_; }
bool PreferAlbumArtist() const { return prefer_albumartist_; }
bool ShowAuthError() const { return show_auth_error_; }
void UpdateNowPlaying(const Song &song);
void ClearPlaying();
@@ -85,6 +86,7 @@ class AudioScrobbler : public QObject {
bool love_button_;
int submit_delay_;
bool prefer_albumartist_;
bool show_auth_error_;
};