mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-03 07:16:31 +01:00
sync updates
This commit is contained in:
@@ -28,7 +28,7 @@ namespace MediaBrowser.Model.Dlna
|
||||
List<MediaSourceInfo> mediaSources = new List<MediaSourceInfo>();
|
||||
foreach (MediaSourceInfo i in options.MediaSources)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(options.MediaSourceId) ||
|
||||
if (string.IsNullOrEmpty(options.MediaSourceId) ||
|
||||
StringHelper.EqualsIgnoreCase(i.Id, options.MediaSourceId))
|
||||
{
|
||||
mediaSources.Add(i);
|
||||
@@ -61,7 +61,7 @@ namespace MediaBrowser.Model.Dlna
|
||||
List<MediaSourceInfo> mediaSources = new List<MediaSourceInfo>();
|
||||
foreach (MediaSourceInfo i in options.MediaSources)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(options.MediaSourceId) ||
|
||||
if (string.IsNullOrEmpty(options.MediaSourceId) ||
|
||||
StringHelper.EqualsIgnoreCase(i.Id, options.MediaSourceId))
|
||||
{
|
||||
mediaSources.Add(i);
|
||||
|
||||
Reference in New Issue
Block a user