Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gajim-plugins
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
muelli
gajim-plugins
Commits
59496795
Commit
59496795
authored
Sep 23, 2018
by
André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[now_listen] Fix
#347
handle cases where artist or title is None
parent
c8bf7632
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
now_listen/now_listen.py
now_listen/now_listen.py
+2
-2
No files found.
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