mirror of
https://github.com/strawberrymusicplayer/strawberry
synced 2024-12-12 16:46:53 +01:00
Fix need_login function
This commit is contained in:
parent
56ffb0deb1
commit
4f805d65b3
@ -97,7 +97,7 @@ class TidalBaseRequest : public QObject {
|
|||||||
QString session_id() { return service_->session_id(); }
|
QString session_id() { return service_->session_id(); }
|
||||||
|
|
||||||
bool authenticated() { return service_->authenticated(); }
|
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(); }
|
bool login_sent() { return service_->login_sent(); }
|
||||||
int max_login_attempts() { return service_->max_login_attempts(); }
|
int max_login_attempts() { return service_->max_login_attempts(); }
|
||||||
int login_attempts() { return service_->login_attempts(); }
|
int login_attempts() { return service_->login_attempts(); }
|
||||||
|
Loading…
Reference in New Issue
Block a user