Update:Podcast episodes on home page dont show an Episode number if none is set

This commit is contained in:
advplyr 2023-05-19 17:03:54 -05:00
parent 0d482aaa42
commit 07fdac9746
2 changed files with 5 additions and 9 deletions

View file

@ -37,7 +37,6 @@ export default {
data() {
return {
shelves: [],
isSettingsLoaded: false,
isFirstNetworkConnection: true,
lastServerFetch: 0,
lastServerFetchLibraryId: null,
@ -318,16 +317,11 @@ export default {
}
})
},
settingsUpdated() {
this.isSettingsLoaded = true
},
initListeners() {
this.$eventBus.$on('library-changed', this.libraryChanged)
this.$eventBus.$on('user-settings', this.settingsUpdated)
},
removeListeners() {
this.$eventBus.$off('library-changed', this.libraryChanged)
this.$eventBus.$off('user-settings', this.settingsUpdated)
}
},
mounted() {