Removed saveDownloadQueue and tagsLanguage from lib settings
This commit is contained in:
parent
9827cfddb0
commit
be131d914f
|
@ -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:
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue