Skip to content

Commit

Permalink
Encode liveUri before passing to backend
Browse files Browse the repository at this point in the history
  • Loading branch information
gfaudriga committed Feb 9, 2024
1 parent e89b7ef commit 0fff38a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SchemaActionBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default {
this.refreshLocationLoading = true
const result = this.$store.dispatch('callLiveUri', {
liveUri: this.$parent.json["liveUri"],
liveUri: encodeURIComponent(this.$parent.json["liveUri"]),
})
result.then((updatedValues) => {
Expand Down

0 comments on commit 0fff38a

Please sign in to comment.