Adapt to new calling convention for Vuex action

This commit is contained in:
D. Berge
2022-03-29 14:05:44 +02:00
parent f8d882da5d
commit f623954399

View File

@@ -91,7 +91,7 @@ export default {
},
async refresh () {
const text = await this.api([`/rss/?remote=${atob(this.$route.params.source)}`, {text:true}]);
const text = await this.api([`/rss/?remote=${atob(this.$route.params.source)}`, {format:"text"}]);
try {
this.feed = this.parse(text);
} catch (err) {