From bcc571fa8463df1fd588cd68cc7c20b3efd7ad6d Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Sun, 26 Jul 2020 01:21:58 +0900 Subject: [PATCH] launch: do not try to catalogue SVGs --- lib/model/source/tag.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model/source/tag.dart b/lib/model/source/tag.dart index 48eecace8..5b2c5a1c4 100644 --- a/lib/model/source/tag.dart +++ b/lib/model/source/tag.dart @@ -23,7 +23,7 @@ mixin TagMixin on SourceBase { Future catalogEntries() async { // final stopwatch = Stopwatch()..start(); - final todo = rawEntries.where((entry) => !entry.isCatalogued).toList(); + final todo = rawEntries.where((entry) => !entry.isCatalogued && !entry.isSvg).toList(); if (todo.isEmpty) return; var progressDone = 0;