Skip to content

Commit

Permalink
take artwork and ratings out
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Dec 26, 2022
1 parent 3f869ae commit 422b41e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/lib/monitor/listitem.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,14 +205,14 @@ def _process_ratings():
get_property('IsUpdatingRatings', clear_property=True)

t_artwork = None
if process_artwork:
t_artwork = Thread(target=_process_artwork)
t_artwork.start()
# if process_artwork:
# t_artwork = Thread(target=_process_artwork)
# t_artwork.start()

t_ratings = None
if process_ratings:
t_ratings = Thread(target=_process_ratings)
t_ratings.start()
# if process_ratings:
# t_ratings = Thread(target=_process_ratings)
# t_ratings.start()

t_artwork.join() if t_artwork else None
t_ratings.join() if t_ratings else None
Expand Down

0 comments on commit 422b41e

Please sign in to comment.