Skip to content

Commit

Permalink
fix: bug on saving fixer api key (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellite authored Feb 22, 2024
1 parent c123160 commit 866eb28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion includes/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
$version = "v1.4.0";
$version = "v1.4.1";
?>
2 changes: 1 addition & 1 deletion scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ function addFixerKeyButton() {
headers: {
"Content-Type": "application/x-www-form-urlencoded",
},
body: `api_key=${encodeURIComponent(apiKey)} & provider=${encodeURIComponent(provider)}`,
body: `api_key=${encodeURIComponent(apiKey)}&provider=${encodeURIComponent(provider)}`,
})
.then(response => response.json())
.then(data => {
Expand Down

0 comments on commit 866eb28

Please sign in to comment.