Merge pull request #803 from sy6sy2/fix-tvos

Use xbmcvfs functions to read and write filesystem files
This commit is contained in:
mcarlton00 2024-03-09 08:36:02 -05:00 committed by GitHub
commit 8869ace79a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -117,13 +117,18 @@ def verify_kodi_defaults():
if xbmcvfs.exists(file_name): if xbmcvfs.exists(file_name):
try: try:
tree = etree.parse(file_name) with xbmcvfs.File(file_name) as f:
b = f.read()
tree = etree.ElementTree(etree.fromstring(b))
except etree.ParseError: except etree.ParseError:
LOG.error("Unable to parse `{}`".format(file_name)) LOG.error("Unable to parse `{}`".format(file_name))
LOG.exception("We ensured the file was OK above, something is wrong!") LOG.exception("We ensured the file was OK above, something is wrong!")
tree = None
tree.getroot().set('order', str(17 + index)) if tree is not None:
tree.write(file_name) tree.getroot().set('order', str(17 + index))
with xbmcvfs.File(file_name, 'w') as f:
f.write(etree.tostring(tree.getroot()))
playlist_path = translate_path("special://profile/playlists/video") playlist_path = translate_path("special://profile/playlists/video")