Use encodeURIComponent for text inputs

This commit is contained in:
mikiher 2023-09-20 11:25:21 +00:00
parent 9967a5dc66
commit 6eab985b1e

View File

@ -325,9 +325,9 @@ export default {
} }
}, },
getSearchQuery() { getSearchQuery() {
if (this.isPodcast) return `term=${this.searchTitle}` if (this.isPodcast) return `term=${encodeURIComponent(this.searchTitle)}`
var searchQuery = `provider=${this.provider}&fallbackTitleOnly=1&title=${this.searchTitle}` var searchQuery = `provider=${this.provider}&fallbackTitleOnly=1&title=${encodeURIComponent(this.searchTitle)}`
if (this.searchAuthor) searchQuery += `&author=${this.searchAuthor}` if (this.searchAuthor) searchQuery += `&author=${encodeURIComponent(this.searchAuthor)}`
return searchQuery return searchQuery
}, },
submitSearch() { submitSearch() {
@ -580,6 +580,7 @@ export default {
.matchListWrapper { .matchListWrapper {
height: calc(100% - 124px); height: calc(100% - 124px);
} }
@media (min-width: 768px) { @media (min-width: 768px) {
.matchListWrapper { .matchListWrapper {
height: calc(100% - 80px); height: calc(100% - 80px);