diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index 1b1fbb6f..9cc3ce0e 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -174,9 +174,13 @@ def emby_backup(): database = os.path.join(backup, "Database") xbmcvfs.mkdir(database) + # Emby database + shutil.copy(src=xbmc.translatePath("special://database/emby.db").decode('utf-8'), + dst=database) + # Videos database shutil.copy(src=utils.getKodiVideoDBPath(), dst=database) - + # Music database if settings('enableMusic') == "true": shutil.copy(src=utils.getKodiMusicDBPath(), dst=database)