From 0fcf978ffeac3fbde30fe22a0649227782308881 Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 27 Nov 2022 14:23:28 -0600 Subject: [PATCH] Add /playlist/:id to dynamic routes --- server/Server.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/Server.js b/server/Server.js index ef343f17..f144d398 100644 --- a/server/Server.js +++ b/server/Server.js @@ -206,7 +206,8 @@ class Server { '/library/:library/podcast/latest', '/config/users/:id', '/config/users/:id/sessions', - '/collection/:id' + '/collection/:id', + '/playlist/:id' ] dyanimicRoutes.forEach((route) => router.get(route, (req, res) => res.sendFile(Path.join(distPath, 'index.html'))))