Browse ISOs

This commit is contained in:
2023-09-04 15:19:20 +02:00
parent 38979d8572
commit a323edafd3
29 changed files with 555 additions and 60 deletions

View File

@@ -184,7 +184,9 @@ public partial class TabViewModel : ITabViewModel
private static IItem MapItem(AbsolutePath item)
{
var t = Task.Run(async () => await MapItemAsync(item));
var t = Task.Run(async () =>
await MapItemAsync(item)
?? throw new Exception("Could not resolve path " + item.Path.Path));
t.Wait();
return t.Result;
}