Merge pull request #1744 from croneter/py3-fix-masterlock
Fix media not showing up in the library if Kodi masterlock has been activated. Kodi bugfix is also necessary, hopefully coming with Kodi 19.4, otherwise switch to Kodi 19.1
This commit is contained in:
commit
c10a2ee59b
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ class InitialSetup(object):
|
|||
force_create=True,
|
||||
top_element='sources') as xml:
|
||||
changed = False
|
||||
for extension in ('smb://', 'nfs://'):
|
||||
for extension in ('smb://', 'nfs://', 'plugin://'):
|
||||
root = xml.set_setting(['video'])
|
||||
changed = self._add_sources(root, extension) or changed
|
||||
if changed:
|
||||
|
|
Loading…
Reference in a new issue