[web-src] podcast handling of propogated 'play_count_changed' event

This commit is contained in:
whatdoineed2do/Ray 2021-09-30 12:51:34 +01:00
parent d6dc92359e
commit af91d99468

View File

@ -52,6 +52,7 @@
:album="selected_album"
:media_kind="media_kind"
@remove-podcast="open_remove_podcast_dialog()"
@play-count-changed="play_count_changed()"
@close="show_details_modal = false" />
<modal-dialog
:show="show_remove_podcast_modal"
@ -145,6 +146,10 @@ export default {
})
},
play_count_changed: function () {
this.$emit('play-count-changed')
},
remove_podcast: function () {
this.show_remove_podcast_modal = false
webapi.library_playlist_delete(this.rss_playlist_to_remove.id).then(() => {