Don't crash if no url present
This commit is contained in:
parent
871e2bc960
commit
9784fb8eb5
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ class Timeline(urwid.Columns):
|
|||
|
||||
if key in ("v", "V"):
|
||||
status = self.get_focused_status()
|
||||
webbrowser.open(status.data["url"])
|
||||
return
|
||||
if status.data["url"]:
|
||||
webbrowser.open(status.data["url"])
|
||||
|
||||
if key in ("u", "U"):
|
||||
status = self.get_focused_status()
|
||||
|
|
Loading…
Reference in a new issue