2024-09-20, 14:44
(2024-09-20, 05:06)sunxiaochuan2506 Wrote: Some adult performer information will not be found.
How do I turn on adult performer information?
C:\Users\SJF\AppData\Roaming\Kodi\addons\script.embuary.info\resources\lib\tmdb.py
def tmdb_search(call,query,year=None,include_adult=True):
I turned on the adult option.True
But I still can't view the adult cast profiles.
All other actors are normal.
How do I turn on the adult option in Python?
true needs to be in double or single quotes, it's a string not a bool:-
Code:
def tmdb_search(call,query,year=None,include_adult='true'):