Skip to content

Commit

Permalink
Merge pull request #2469 from erri120/fix/localfiles
Browse files Browse the repository at this point in the history
Fix locally added files not being found
  • Loading branch information
erri120 authored Jan 13, 2025
2 parents 9b22a47 + 06c3e93 commit 7a0d4bf
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 7a0d4bf

Please sign in to comment.