Linux tabs restore

This commit is contained in:
2022-02-04 01:07:55 +01:00
parent 2e43cca9fd
commit f9c675eb7c
5 changed files with 15 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ namespace FileTime.Core.Components
i.FullName == null && value?.FullName == null
? i.Name == value?.Name
: i.FullName == value?.FullName);
if (itemToSelect == null) throw new IndexOutOfRangeException("Provided item does not exists in the current container.");
if (itemToSelect == null) throw new IndexOutOfRangeException($"Provided item ({value.FullName ?? "unknwon"}) does not exists in the current container ({_currentLocation.FullName ?? "unknwon"}).");
}
CancellationToken newToken;