Merge pull request #6473 from Bond-009/nullable7

Enable nullable for more files
This commit is contained in:
Claus Vium
2021-09-01 09:28:19 +02:00
committed by GitHub
12 changed files with 42 additions and 58 deletions

View File

@@ -3173,10 +3173,7 @@ namespace Emby.Server.Implementations.Library
{
if (!list.Any(i => string.Equals(i.Path, location, StringComparison.Ordinal)))
{
list.Add(new MediaPathInfo
{
Path = location
});
list.Add(new MediaPathInfo(location));
}
}