Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/db/sqlite/firo_cache_writer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ FCResult _updateSparkUsedTagsWith(Database db, List<List<dynamic>> tags) {
// hash the tags here since this function is called in a background isolate
final hashedTags =
LibSpark.hashTags(
base64Tags: tags.map((e) => e[0] as String).toList(),
base64Tags: tags.map((e) => e[0] as String).toSet(),
).toList();
if (hashedTags.isEmpty) {
// nothing to add, return early
Expand Down
Loading