Skip to content

Commit

Permalink
Thing action popup: Fix invocation of action with signature hash (#2865)
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <[email protected]>
  • Loading branch information
florian-h05 authored Nov 10, 2024
1 parent 180cd78 commit 7e8a03e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default {
return
}
this.executing = true
this.$oh.api.post(`/rest/actions/${this.thingUID}/${this.action.actionUid}`, this.actionInput)
this.$oh.api.post(`/rest/actions/${this.thingUID}/${encodeURIComponent(this.action.actionUid)}`, this.actionInput)
.then((data) => {
this.actionOutput = data
this.executing = false
Expand Down

0 comments on commit 7e8a03e

Please sign in to comment.