diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-07-04 11:54:25 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-07-04 11:54:25 -0400 |
| commit | 6d1b00da648e01a15c0c0384c79d37c824358769 (patch) | |
| tree | 9b55a96fa3ed8d725228b993dc35f283bec76dac /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 176f25fb98891bfc3b2e3215e957af8cfffd681c (diff) | |
Use Array.Empty
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 25933bc90..90f62e153 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -613,7 +613,7 @@ namespace MediaBrowser.Controller.Entities { if (!IsFileProtocol) { - return new string[] { }; + return Array.Empty<string>(); } return new[] { Path }; |
