diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-26 00:39:40 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-04-26 00:39:40 -0400 |
| commit | 6562824a84c06b586c56b407afd1916bfa38bbb4 (patch) | |
| tree | a17dac205fdc892a5c15ccb9698acc5ea0fba930 /MediaBrowser.Providers/Playlists | |
| parent | a7b32d4ec0bd3f4b383078a9ecf2e2f20757bdc9 (diff) | |
fixed for new collection creation
Diffstat (limited to 'MediaBrowser.Providers/Playlists')
| -rw-r--r-- | MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs b/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs index 2e407f10c..c53a89db7 100644 --- a/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs +++ b/MediaBrowser.Providers/Playlists/PlaylistMetadataService.cs @@ -33,14 +33,10 @@ namespace MediaBrowser.Providers.Playlists target.PlaylistMediaType = source.PlaylistMediaType; } - if (replaceData || target.Shares.Count == 0) - { - target.Shares = source.Shares; - } - if (mergeMetadataSettings) { target.LinkedChildren = source.LinkedChildren; + target.Shares = source.Shares; } } } |
