Skip to content

Commit

Permalink
fix: uri decode
Browse files Browse the repository at this point in the history
  • Loading branch information
geminate committed Dec 26, 2018
1 parent e5ae225 commit 4affefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d-tools",
"version": "0.1.6",
"version": "0.1.7",
"author": "liuhuihao <[email protected]>",
"description": "d-tools is a toolbox for developers.Formatter, Base64, Regex test,Host manager and so on.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/pages/textTransform/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
this.initMessage();
this.history.push(this.text);
this.codeType == '1' && this.base64Decode();
this.codeType == '3' && this.uriDecode
this.codeType == '3' && this.uriDecode();
this.codeType == '4' && this.uriComponentDecode();
this.codeType == '5' && this.unicodeDecode();
},
Expand Down

0 comments on commit 4affefe

Please sign in to comment.