From efcbe041c5129f9ae662806e2eaa084fb2d6de5c Mon Sep 17 00:00:00 2001 From: sneurlax Date: Mon, 25 Aug 2025 14:30:56 -0500 Subject: [PATCH] fix: List can't be assigned to the parameter type Set --- lib/db/sqlite/firo_cache_writer.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/sqlite/firo_cache_writer.dart b/lib/db/sqlite/firo_cache_writer.dart index 09383601e..c3a8d58d1 100644 --- a/lib/db/sqlite/firo_cache_writer.dart +++ b/lib/db/sqlite/firo_cache_writer.dart @@ -17,7 +17,7 @@ FCResult _updateSparkUsedTagsWith(Database db, List> 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