diff --git a/client/episodes.html b/client/episodes.html
index 2f0423f..4f72e7d 100644
--- a/client/episodes.html
+++ b/client/episodes.html
@@ -340,6 +340,15 @@
}
socket.send(getWebsocketMessage("Enqueue",`{"itemId":"${id}"}`))
}
+ function enquePodcast(id){
+ if(!socket){
+ return
+ }
+ socket.send(getWebsocketMessage("Enqueue",`{"podcastId":"${id}"}`))
+ }
+ function playPodcast(id){
+ openPlayer("",id)
+ }