mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:47:23 +01:00
add tabs for filetypes to data analysis ui
This commit is contained in:
parent
42da1855b1
commit
5543c7c7ad
4 changed files with 136 additions and 89 deletions
|
|
@ -83,7 +83,7 @@ public sealed class CharacterAnalyzer : MediatorSubscriberBase, IDisposable
|
|||
Dictionary<string, FileDataEntry> data = new(StringComparer.OrdinalIgnoreCase);
|
||||
foreach (var fileEntry in obj.Value)
|
||||
{
|
||||
var fileCacheEntries = _fileCacheManager.GetAllFileCachesByHash(fileEntry.Hash);
|
||||
var fileCacheEntries = _fileCacheManager.GetAllFileCachesByHash(fileEntry.Hash).Where(c => !c.IsCacheEntry).ToList();
|
||||
if (fileCacheEntries.Count == 0) continue;
|
||||
|
||||
var filePath = fileCacheEntries[0].ResolvedFilepath;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue