encodeURI in feed URL

This commit is contained in:
lesion 2022-01-17 12:02:28 +01:00
parent 919075f192
commit ee26630e4d
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -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) {