Made @names into clickable links that load the user tab
This commit is contained in:
@ -206,7 +206,7 @@ class GetFollowing(ApiThread):
|
||||
relationship = self.api.ShowFriendships(target_screen_name=screen_name)
|
||||
following = relationship.source.following
|
||||
except (HTTPError, URLError):
|
||||
following = false
|
||||
following = False
|
||||
|
||||
self.pane.set_following(following)
|
||||
|
||||
@ -229,7 +229,7 @@ class GetVerified(ApiThread):
|
||||
user = self.api.GetUser(screen_name)
|
||||
verified = user.verified
|
||||
except (HTTPError, URLError):
|
||||
verified = false
|
||||
verified = False
|
||||
|
||||
self.pane.set_verified(verified)
|
||||
|
||||
|
Reference in New Issue
Block a user