You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See Numergy/signalslot@704926e. Edit your /storage/.kodi/addons/script.plex/lib/_included_packages/plexnet/signalslot/signal.py file and make sure that your connect method looks similar:
defconnect(self, slot):
""" Connect a callback ``slot`` to this signal. """ifnotisinstance(slot, BaseSlot):
try:
ifinspect.getfullargspec(slot).varkwisNone:
raiseexceptions.SlotMustAcceptKeywords(self, slot)
exceptTypeError:
ifinspect.getfullargspec(slot.__call__).varkwisNone:
raiseexceptions.SlotMustAcceptKeywords(self, slot)
Description:
On starting the Plex addon, the app gets stuck on the loading screen / animation.
Log message:
Details:
Checklist
Link to pastebin service: https://paste.hihn.org/dsbo/raw
The text was updated successfully, but these errors were encountered: