encodeURI in feed URL
This commit is contained in:
parent
919075f192
commit
ee26630e4d
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ export default {
|
|||
computed: {
|
||||
...mapState(['filters', 'settings']),
|
||||
feedLink () {
|
||||
const tags = this.filters.tags && this.filters.tags.join(',')
|
||||
const tags = this.filters.tags && this.filters.tags.map(encodeURIComponent).join(',')
|
||||
const places = this.filters.places && this.filters.places.join(',')
|
||||
let query = ''
|
||||
if (tags || places) {
|
||||
|
|
Loading…
Reference in a new issue