Fix need_login function

This commit is contained in:
Jonas Kvinge 2019-06-11 19:26:00 +02:00
parent 56ffb0deb1
commit 4f805d65b3
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class TidalBaseRequest : public QObject {
QString session_id() { return service_->session_id(); }
bool authenticated() { return service_->authenticated(); }
bool need_login() { return need_login(); }
bool need_login() { return service_->need_login(); }
bool login_sent() { return service_->login_sent(); }
int max_login_attempts() { return service_->max_login_attempts(); }
int login_attempts() { return service_->login_attempts(); }