diff --git a/app/src/main/java/com/cappielloantonio/play/subsonic/api/podcast/PodcastClient.java b/app/src/main/java/com/cappielloantonio/play/subsonic/api/podcast/PodcastClient.java index fe7306e7..fa7e3aa0 100644 --- a/app/src/main/java/com/cappielloantonio/play/subsonic/api/podcast/PodcastClient.java +++ b/app/src/main/java/com/cappielloantonio/play/subsonic/api/podcast/PodcastClient.java @@ -44,6 +44,11 @@ public class PodcastClient { return podcastService.refreshPodcasts(subsonic.getParams()); } + public Call createPodcastChannel(String url) { + Log.d(TAG, "createPodcastChannel()"); + return podcastService.createPodcastChannel(subsonic.getParams(), url); + } + public Call deletePodcastChannel(String channelId) { Log.d(TAG, "deletePodcastChannel()"); return podcastService.deletePodcastChannel(subsonic.getParams(), channelId);