Made @names into clickable links that load the user tab
This commit is contained in:
parent
dad6c68159
commit
8764cc77c3
3 changed files with 8 additions and 9 deletions
|
@ -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 a new issue