Explicitly delete xbmc.Monitor() and xbmc.Player()

This commit is contained in:
croneter 2020-06-09 09:36:34 +02:00
parent 28500d2cdf
commit 97c3239657

View file

@ -556,6 +556,11 @@ class Service(object):
library_sync.clear_window_vars()
# Will block until threads have quit
app.APP.stop_threads()
# CLEANUP
# Kodi's xbmc.Monitor() stalls
# delete xbmc.Player() just to be sure
del app.APP.monitor
del app.APP.player
def start():