Updated dependencies and fixed new NRT issues

This commit is contained in:
Bjarke Berg
2022-09-19 12:36:45 +02:00
parent c1010e5239
commit 803c044b60
11 changed files with 21 additions and 24 deletions

View File

@@ -70,7 +70,7 @@ internal class MediaPrependBasePathFileProvider : IFileProvider
if (TryMapSubPath(subpath, out PathString newPath))
{
// KJA changed: use explicit newPath.Value instead of implicit newPath string operator (which calls ToString())
IFileInfo? result = _underlyingFileProvider.GetFileInfo(newPath.Value);
IFileInfo? result = _underlyingFileProvider.GetFileInfo(newPath.Value!);
return result;
}
@@ -84,7 +84,7 @@ internal class MediaPrependBasePathFileProvider : IFileProvider
if (TryMapSubPath(filter, out PathString newPath))
{
// KJA changed: use explicit newPath.Value instead of implicit newPath string operator (which calls ToString())
IChangeToken? result = _underlyingFileProvider.Watch(newPath.Value);
IChangeToken? result = _underlyingFileProvider.Watch(newPath.Value!);
return result;
}