Skip to content

Commit

Permalink
twittermeow/session: ignore missing screen name
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Nov 22, 2024
1 parent cfee470 commit 026c749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/twittermeow/session_loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (s *SessionLoader) GetCurrentUser() *response.AccountSettingsResponse {
}

func (s *SessionLoader) isAuthenticated() bool {
return s.currentUser != nil && s.currentUser.ScreenName != ""
return s.currentUser != nil /*&& s.currentUser.ScreenName != ""*/
}

func (s *SessionLoader) LoadPage(url string) error {
Expand Down

0 comments on commit 026c749

Please sign in to comment.