Skip to content

Commit d8bf980

Browse files
committed
Fix locally added files not being found
1 parent afe1167 commit d8bf980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NexusMods.Collections/CollectionDownloader.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static bool TryGetDownloadedItem(CollectionDownloadExternal.ReadOnly down
162162
var locallyAddedDatoms = db.Datoms(LocalFile.Md5, download.Md5);
163163
if (locallyAddedDatoms.Count > 0)
164164
{
165-
foreach (var datom in directDownloadDatoms)
165+
foreach (var datom in locallyAddedDatoms)
166166
{
167167
var file = LocalFile.Load(db, datom.E);
168168
if (file.IsValid())

0 commit comments

Comments
 (0)