Skip to content

Commit

Permalink
Merge pull request #9 from ReceiptManager/dev
Browse files Browse the repository at this point in the history
Fix required restart after config change
  • Loading branch information
Dielee authored May 31, 2021
2 parents 285880a + b69c138 commit 08561c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Backend/src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def before_request():
if api_token != request.args["token"]:
return "Unauthorized", 401

global cfg
cfg = load_conf()
if ((
not cfg["dbMode"]
Expand Down
2 changes: 1 addition & 1 deletion Frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script src="node_modules/web-animations-js/web-animations-next.min.js"></script>
<script>
var version="0.10.0"
var version="0.10.1"
var mainPage;
var scanPage;
var historyPage;
Expand Down

0 comments on commit 08561c8

Please sign in to comment.