mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-09 00:45:05 +02:00
Fix:Podcast episode match not properly encoding search query #3177
This commit is contained in:
parent
e925e9b23f
commit
dbc7ad0b3b
3 changed files with 18 additions and 24 deletions
|
@ -289,7 +289,6 @@ module.exports.findMatchingEpisodesInFeed = (feed, searchTitle) => {
|
|||
const matches = []
|
||||
feed.episodes.forEach((ep) => {
|
||||
if (!ep.title) return
|
||||
|
||||
const epTitle = ep.title.toLowerCase().trim()
|
||||
if (epTitle === searchTitle) {
|
||||
matches.push({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue