launch: do not try to catalogue SVGs
This commit is contained in:
parent
d368fbe65c
commit
bcc571fa84
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ mixin TagMixin on SourceBase {
|
||||||
|
|
||||||
Future<void> catalogEntries() async {
|
Future<void> catalogEntries() async {
|
||||||
// final stopwatch = Stopwatch()..start();
|
// 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;
|
if (todo.isEmpty) return;
|
||||||
|
|
||||||
var progressDone = 0;
|
var progressDone = 0;
|
||||||
|
|
Loading…
Reference in a new issue