mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	Fix:Episode match encode title query string
This commit is contained in:
		
							parent
							
								
									1fc929ab33
								
							
						
					
					
						commit
						ca2c2f2702
					
				@ -132,7 +132,7 @@ export default {
 | 
				
			|||||||
      this.searchedTitle = this.episodeTitle
 | 
					      this.searchedTitle = this.episodeTitle
 | 
				
			||||||
      this.isProcessing = true
 | 
					      this.isProcessing = true
 | 
				
			||||||
      this.$axios
 | 
					      this.$axios
 | 
				
			||||||
        .$get(`/api/podcasts/${this.libraryItem.id}/search-episode?title=${this.episodeTitle}`)
 | 
					        .$get(`/api/podcasts/${this.libraryItem.id}/search-episode?title=${this.$encodeUriPath(this.episodeTitle)}`)
 | 
				
			||||||
        .then((results) => {
 | 
					        .then((results) => {
 | 
				
			||||||
          this.episodesFound = results.episodes.map((ep) => ep.episode)
 | 
					          this.episodesFound = results.episodes.map((ep) => ep.episode)
 | 
				
			||||||
          console.log('Episodes found', this.episodesFound)
 | 
					          console.log('Episodes found', this.episodesFound)
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user