diff --git a/web-src/src/components/ModalDialogAddRss.vue b/web-src/src/components/ModalDialogAddRss.vue
index 22d5eaab..bb8f66ca 100644
--- a/web-src/src/components/ModalDialogAddRss.vue
+++ b/web-src/src/components/ModalDialogAddRss.vue
@@ -6,20 +6,22 @@
@@ -27,7 +29,7 @@
-
@@ -58,7 +60,7 @@ export default {
this.loading = true
webapi.library_add(this.url).then(() => {
this.$emit('close')
- this.$emit('rss_change')
+ this.$emit('podcast_added')
this.url = ''
}).catch(() => {
this.loading = false
diff --git a/web-src/src/pages/PagePodcasts.vue b/web-src/src/pages/PagePodcasts.vue
index d0c166e8..3d9f5109 100644
--- a/web-src/src/pages/PagePodcasts.vue
+++ b/web-src/src/pages/PagePodcasts.vue
@@ -43,11 +43,11 @@
@@ -77,7 +77,10 @@
(This will also remove the RSS playlist {{ rss_playlist_to_remove.name }}.)
-
+
@@ -158,7 +161,7 @@ export default {
this.new_episodes.items = { }
},
- open_add_stream_dialog: function (item) {
+ open_add_podcast_dialog: function (item) {
this.show_url_modal = true
},