[cron_uploader] don't try to upload .listing files, see #972

This commit is contained in:
Shish 2024-01-05 15:31:21 +00:00
parent d4b86b0e95
commit 4b954b2e68

View file

@ -482,7 +482,7 @@ class CronUploader extends Extension
}
private const PARTIAL_DOWNLOAD_EXTENSIONS = ['crdownload','part'];
private const SKIPPABLE_FILES = ['.ds_store','thumbs.db'];
private const SKIPPABLE_FILES = ['.ds_store', 'thumbs.db', 'desktop.ini', '.listing'];
private function is_skippable_file(string $path): bool
{