aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/SongInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Providers/SongInfo.cs')
-rw-r--r--MediaBrowser.Controller/Providers/SongInfo.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Providers/SongInfo.cs b/MediaBrowser.Controller/Providers/SongInfo.cs
index e3a6f5d37..61e950130 100644
--- a/MediaBrowser.Controller/Providers/SongInfo.cs
+++ b/MediaBrowser.Controller/Providers/SongInfo.cs
@@ -1,3 +1,4 @@
+using System;
namespace MediaBrowser.Controller.Providers
{
@@ -9,8 +10,8 @@ namespace MediaBrowser.Controller.Providers
public SongInfo()
{
- Artists = EmptyStringArray;
- AlbumArtists = EmptyStringArray;
+ Artists = Array.Empty<string>();
+ AlbumArtists = Array.Empty<string>();
}
}
-} \ No newline at end of file
+}