Revert "Updated dependencies and fixed new NRT issues"

This reverts commit b2b2903a6e.
This commit is contained in:
Sebastiaan Janssen
2022-09-20 09:08:28 +02:00
parent 85e31bd12d
commit 8d5fb41ab7
11 changed files with 19 additions and 30 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;
}