We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db743e9 commit 9b8d248Copy full SHA for 9b8d248
1 file changed
DazContentInstaller/ViewModels/MainWindowViewModel.cs
@@ -216,7 +216,8 @@ await Task.Run(async () =>
216
217
var archivesToInstallNames = archivesToInstall.Select(GetLoadedArchiveName).ToArray();
218
var existingArchives = await dbContext.Archives
219
- .Where(a => archivesToInstallNames.Contains(a.ArchiveName))
+ .Where(a => a.AssetLibraryId == CurrentSelectedAssetLibrary.Id &&
220
+ archivesToInstallNames.Contains(a.ArchiveName))
221
.Include(a => a.AssetFiles)
222
.ToListAsync();
223
0 commit comments