diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2023-09-16 15:08:45 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-09-16 15:09:19 +0200 |
| commit | f7720e7c99e0e0f84f6492670dc1bcf83fa0f2fb (patch) | |
| tree | 9a62c6c1feba9a249db25129ba827b4a324b190e /Emby.Server.Implementations/Playlists | |
| parent | 61155adecd8a69bb476487f9fc81175b0c4185b7 (diff) | |
Extend collections cleanup task to include playlists too
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
| -rw-r--r-- | Emby.Server.Implementations/Playlists/PlaylistManager.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistManager.cs b/Emby.Server.Implementations/Playlists/PlaylistManager.cs index 702f8d45b..0cb450cdf 100644 --- a/Emby.Server.Implementations/Playlists/PlaylistManager.cs +++ b/Emby.Server.Implementations/Playlists/PlaylistManager.cs @@ -518,6 +518,11 @@ namespace Emby.Server.Implementations.Playlists return relativePath; } + public Folder GetPlaylistsFolder() + { + return GetPlaylistsFolder(Guid.Empty); + } + public Folder GetPlaylistsFolder(Guid userId) { const string TypeName = "PlaylistsFolder"; |
