Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Malte L
gajim-plugins
Commits
59496795
Commit
59496795
authored
Sep 23, 2018
by
André
Browse files
[now_listen] Fix #347
handle cases where artist or title is None
parent
c8bf7632
Changes
1
Hide whitespace changes
Inline
Side-by-side
now_listen/now_listen.py
View file @
59496795
...
...
@@ -76,12 +76,12 @@ class NowListenPlugin(GajimPlugin):
account
=
None
):
if
music_track_info
is
None
or
music_track_info
.
paused
:
artist
=
title
=
album
=
''
self
.
artist
=
self
.
title
=
self
.
album
=
''
else
:
self
.
artist
=
music_track_info
.
artist
self
.
title
=
music_track_info
.
title
self
.
album
=
music_track_info
.
album
log
.
debug
(
self
.
artist
+
" - "
+
self
.
title
)
log
.
debug
(
"%s - %s"
,
self
.
artist
,
self
.
title
)
if
hasattr
(
music_track_info
,
'url'
):
self
.
url
=
music_track_info
.
url
self
.
albumartist
=
music_track_info
.
albumartist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment