diff --git a/scripts/local_indexing.py b/scripts/local_indexing.py index 4f6853f..343fd1e 100644 --- a/scripts/local_indexing.py +++ b/scripts/local_indexing.py @@ -69,7 +69,7 @@ async def main(args): for item in root.glob('**/*.*'): counter += 1 logger.info("[{}] Indexing {}", str(counter), str(item.relative_to(root))) - if item.suffix in ['.jpg', '.png', '.jpeg', '.jfif', '.webp']: + if item.suffix in ['.jpg', '.png', '.jpeg', '.jfif', '.webp', '.gif']: imgdata = copy_and_index(item) if imgdata is not None: buffer.append(imgdata)