Skip to content

Commit

Permalink
Merge pull request #49 from certmichelin/fix-encoding
Browse files Browse the repository at this point in the history
Fix encoding error in manually approved links
  • Loading branch information
elegantmoose authored May 9, 2024
2 parents 10b5711 + 40cb97a commit b5f7315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/operationStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export const useOperationStore = defineStore("operationStore", {
async updateLink($api, status, command = null, currentLink) {
const updatedLink = {
...currentLink,
command: b64DecodeUnicode(currentLink.command),
command: currentLink.command,
};
if (command) updatedLink.command = command;
updatedLink.status = status;
Expand Down

0 comments on commit b5f7315

Please sign in to comment.