aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-07-04 11:54:25 -0400
committerPatrick Barron <barronpm@gmail.com>2020-07-04 11:54:25 -0400
commit6d1b00da648e01a15c0c0384c79d37c824358769 (patch)
tree9b55a96fa3ed8d725228b993dc35f283bec76dac /MediaBrowser.Controller/Library
parent176f25fb98891bfc3b2e3215e957af8cfffd681c (diff)
Use Array.Empty
Diffstat (limited to 'MediaBrowser.Controller/Library')
-rw-r--r--MediaBrowser.Controller/Library/TVUtils.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/TVUtils.cs b/MediaBrowser.Controller/Library/TVUtils.cs
index fc9b3f1c6..a3aa6019e 100644
--- a/MediaBrowser.Controller/Library/TVUtils.cs
+++ b/MediaBrowser.Controller/Library/TVUtils.cs
@@ -38,7 +38,7 @@ namespace MediaBrowser.Controller.Library
};
}
- return new DayOfWeek[] { };
+ return Array.Empty<DayOfWeek>();
}
return null;