diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-09-03 06:56:45 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-09-03 06:56:45 -0600 |
| commit | ec1341215518d8975acafdf6a59644e63ad81a1a (patch) | |
| tree | 50806c436134adae258e2053e03cb0d09556e4de /Emby.Server.Implementations/Library/LibraryManager.cs | |
| parent | ecb4b8e0aacef56331e7eadd1f82839b0f6e1e00 (diff) | |
| parent | b1e7cfd84c6007472f3b42d6aea360a02119925a (diff) | |
Merge remote-tracking branch 'upstream/master' into warn-259810
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Library/LibraryManager.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs index 6a2983d9b..a0a6bb292 100644 --- a/Emby.Server.Implementations/Library/LibraryManager.cs +++ b/Emby.Server.Implementations/Library/LibraryManager.cs @@ -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)); } } |
