Skip to content

Commit

Permalink
Fix locally added files not being found
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Jan 14, 2025
1 parent afe1167 commit d8bf980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NexusMods.Collections/CollectionDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public static bool TryGetDownloadedItem(CollectionDownloadExternal.ReadOnly down
var locallyAddedDatoms = db.Datoms(LocalFile.Md5, download.Md5);
if (locallyAddedDatoms.Count > 0)
{
foreach (var datom in directDownloadDatoms)
foreach (var datom in locallyAddedDatoms)
{
var file = LocalFile.Load(db, datom.E);
if (file.IsValid())
Expand Down

0 comments on commit d8bf980

Please sign in to comment.