Skip to content
Snippets Groups Projects
Commit add226ba authored by Ciarán Ainsworth's avatar Ciarán Ainsworth
Browse files

Merge branch 'fix-disable-plugins' into 'develop'

Fix disabling plugins

See merge request funkwhale/funkwhale!1240
parents 79219fd6 9014c782
No related branches found
No related tags found
No related merge requests found
Fixed an issue that prevented disabling plugins
\ No newline at end of file
......@@ -91,7 +91,7 @@ export default {
this.isLoading = true
this.errors = []
let url = `plugins/${this.plugin.name}`
let enableUrl = this.enabled ? `${url}/enable` : `${url}/enable`
let enableUrl = this.enabled ? `${url}/enable` : `${url}/disable`
await axios.post(enableUrl)
try {
await axios.post(url, this.values)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment