v19 "Library Data Provider Error - Check logs for more details.
#1
I get this error as soon as Kodi launched. Never used to before; started all of a sudden. 

Googling around I found this very common, but back in 2014/2015 period. Could not locate any newer posts of this problem; and none of the older posts provided any solution. 

Tried:
- Uninstalling / Reinstalling Library Data Provider
- Uninstalling / Reinstalling Kodi
- Uninstalling / Reinstalling Skin

This is the only Error thrown in logs:

xml:
2020-06-04 08:50:47.928 T:11188   ERROR <general>: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                                    - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                                   Error Type: <class 'AttributeError'>
                                                   Error Contents: module 'xbmc' has no attribute 'abortRequested'
                                                   Traceback (most recent call last):
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\service.py", line 181, in <module>
                                                       Main()
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\service.py", line 51, in __init__
                                                       self._fetch_recommended()
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\service.py", line 80, in _fetch_recommended
                                                       LIBRARY._fetch_recommended_episodes()
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\resources\lib\library.py", line 286, in _fetch_recommended_episodes
                                                       return self._fetch_items(useCache, "recommendedepisodes", query_recommended_episodes)
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\resources\lib\library.py", line 66, in _fetch_items
                                                       rv = queryFunc()  # Must return a unicode string (json-encoded data)
                                                     File "C:\Users\l3viathan\AppData\Roaming\Kodi\addons\service.library.data.provider\resources\lib\library.py", line 276, in query_recommended_episodes
                                                       if xbmc.abortRequested:
                                                   AttributeError: module 'xbmc' has no attribute 'abortRequested'
                                                   -->End of Python script error report<--
                                                   
Any suggestions?
Reply
#2
Change code line 276 in addons\service.library.data.provider\resources\lib\library.py

Edit library.py file

if xbmc.abortRequested:

edit to

if xbmc.Monitor().abortRequested:

Repeat in data.py file, line 199.

will solve the issue.

Service add-on used by skins (MQ8, Ace2 and others).
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#3
I can attest it still throws a error on Kodi 19 even while browsing the homescreen had to disable it because it was becoming annoying Kodi 19 I think there's no pil module so logs always say no errors found (while using a wizard)
Reply

Logout Mark Read Team Forum Stats Members Help
"Library Data Provider Error - Check logs for more details.0