Removed saveDownloadQueue and tagsLanguage from lib settings

This commit is contained in:
RemixDev 2021-06-27 19:53:41 +02:00
parent 9827cfddb0
commit be131d914f
No known key found for this signature in database
GPG Key ID: B33962B465BDB51C
2 changed files with 1 additions and 3 deletions

View File

@ -22,7 +22,7 @@ def download(url, bitrate, portable, path):
configFolder = localpath / 'config' if portable else localpaths.getConfigFolder() configFolder = localpath / 'config' if portable else localpaths.getConfigFolder()
settings = loadSettings(configFolder) settings = loadSettings(configFolder)
dz = Deezer(settings.get('tagsLanguage')) dz = Deezer(settings.get('tagsLanguage', ""))
def requestValidArl(): def requestValidArl():
while True: while True:

View File

@ -42,7 +42,6 @@ DEFAULTS = {
"fallbackSearch": False, "fallbackSearch": False,
"logErrors": True, "logErrors": True,
"logSearched": False, "logSearched": False,
"saveDownloadQueue": False,
"overwriteFile": OverwriteOption.DONT_OVERWRITE, "overwriteFile": OverwriteOption.DONT_OVERWRITE,
"createM3U8File": False, "createM3U8File": False,
"playlistFilenameTemplate": "playlist", "playlistFilenameTemplate": "playlist",
@ -60,7 +59,6 @@ DEFAULTS = {
"albumVariousArtists": True, "albumVariousArtists": True,
"removeAlbumVersion": False, "removeAlbumVersion": False,
"removeDuplicateArtists": False, "removeDuplicateArtists": False,
"tagsLanguage": "",
"featuredToTitle": FeaturesOption.NO_CHANGE, "featuredToTitle": FeaturesOption.NO_CHANGE,
"titleCasing": "nothing", "titleCasing": "nothing",
"artistCasing": "nothing", "artistCasing": "nothing",