aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Playlists
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-15 08:34:24 -0600
committercrobibero <cody@robibe.ro>2020-06-15 08:34:24 -0600
commit24f54837e1528760c191b82b3df99f98de442f06 (patch)
treead8016f6cd1f8efd5f1220eadafaefc1d401861f /Emby.Server.Implementations/Playlists
parentc243ec7ce9baa927abf564aa060ce39a5c010e8d (diff)
Switch to M3uContent
Diffstat (limited to 'Emby.Server.Implementations/Playlists')
-rw-r--r--Emby.Server.Implementations/Playlists/PlaylistManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Playlists/PlaylistManager.cs b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
index 9feef5d8d..184d64e60 100644
--- a/Emby.Server.Implementations/Playlists/PlaylistManager.cs
+++ b/Emby.Server.Implementations/Playlists/PlaylistManager.cs
@@ -466,7 +466,7 @@ namespace Emby.Server.Implementations.Playlists
playlist.PlaylistEntries.Add(entry);
}
- string text = new M3u8Content().ToText(playlist);
+ string text = new M3uContent().ToText(playlist);
File.WriteAllText(playlistPath, text);
}