Add exception handling for empty collections when scanning libraries
This commit is contained in:
parent
4b0cc59404
commit
1d552c6dc4
1 changed files with 21 additions and 9 deletions
|
@ -254,17 +254,29 @@ class App:
|
||||||
def scan(self, collections: list[Collection]):
|
def scan(self, collections: list[Collection]):
|
||||||
if self.__config.skip_previous:
|
if self.__config.skip_previous:
|
||||||
for collection in collections:
|
for collection in collections:
|
||||||
existing = collection.get_existing(self.__config.audio_format.value.ext)
|
try:
|
||||||
self.__existing.update(existing)
|
existing = collection.get_existing(
|
||||||
|
self.__config.audio_format.value.ext
|
||||||
|
)
|
||||||
|
self.__existing.update(existing)
|
||||||
|
except IndexError as err:
|
||||||
|
Logger.log(
|
||||||
|
LogChannel.WARNINGS, f"{err} Cannot scan for existing tracks"
|
||||||
|
)
|
||||||
if self.__config.skip_duplicates:
|
if self.__config.skip_duplicates:
|
||||||
for collection in collections:
|
for collection in collections:
|
||||||
duplicates = collection.get_duplicates(
|
try:
|
||||||
self.__config.audio_format.value.ext,
|
duplicates = collection.get_duplicates(
|
||||||
self.__config.album_library,
|
self.__config.audio_format.value.ext,
|
||||||
self.__config.playlist_library,
|
self.__config.album_library,
|
||||||
self.__config.podcast_library,
|
self.__config.playlist_library,
|
||||||
)
|
self.__config.podcast_library,
|
||||||
self.__duplicates.update(duplicates)
|
)
|
||||||
|
self.__duplicates.update(duplicates)
|
||||||
|
except IndexError as err:
|
||||||
|
Logger.log(
|
||||||
|
LogChannel.WARNINGS, f"{err} Cannot scan for duplicate tracks"
|
||||||
|
)
|
||||||
|
|
||||||
def download_all(self, collections: list[Collection]) -> None:
|
def download_all(self, collections: list[Collection]) -> None:
|
||||||
self.rate_limit_hits = 0
|
self.rate_limit_hits = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue