diff options
Diffstat (limited to 'dist')
-rwxr-xr-x | dist/js/app.js | 10 | ||||
-rwxr-xr-x | dist/pages/about.html | 2 | ||||
-rwxr-xr-x | dist/sw.js | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/dist/js/app.js b/dist/js/app.js index 594c9a1..40c5cf2 100755 --- a/dist/js/app.js +++ b/dist/js/app.js @@ -3,7 +3,7 @@ const app_version = "1.0.14-beta"; -const previous_commit = "a6a552efe42f84f439c82e21ba5dcc0f66e43a82"; +const previous_commit = "c40b1bd1b0c465663eef509464e3807019727caf"; if ("serviceWorker" in navigator) { navigator.serviceWorker.register("/sw.js") @@ -57,7 +57,7 @@ function gsecErrorHandlerUI(err) { var error_report_function = async function (msg, url, lineNo, columnNo, error) { - localforage.getItem("errorReporting").then((value) => { + localforage.getItem("errorReporting").then(async function(value) { let selectedE = value; if(value == null || value.length < 1) { selectedE = "on"; @@ -65,7 +65,11 @@ var error_report_function = async function (msg, url, lineNo, columnNo, error) { if(selectedE == "on") { var data = {}; data.error = {"msg": msg, "url": url, "line": lineNo, "column": columnNo, "obj": error}; - data.client = {"ua": navigator.userAgent, "app_version": app_version, "previous_commit": previous_commit}; + data.client = {"ua": navigator.userAgent, "app_version": app_version, "previous_commit": previous_commit, "username": null}; + + // Load required data + data.client.username = await localforage.getItem("username"); + data.type = "error"; $.post("https://beziapp-report.gimb.tk/", data); } else { diff --git a/dist/pages/about.html b/dist/pages/about.html index a784497..c1e9dfb 100755 --- a/dist/pages/about.html +++ b/dist/pages/about.html @@ -142,7 +142,7 @@ <div class="row"> <p> <small> - ^HEAD a6a552efe42f84f439c82e21ba5dcc0f66e43a82 + ^HEAD c40b1bd1b0c465663eef509464e3807019727caf </small> </p> </div> @@ -3,8 +3,8 @@ // Change version to cause cache refresh -const static_cache_name = "site-static-1.0.14-beta-a6a552e"; -// commit before the latest is a6a552efe42f84f439c82e21ba5dcc0f66e43a82 +const static_cache_name = "site-static-1.0.14-beta-c40b1bd"; +// commit before the latest is c40b1bd1b0c465663eef509464e3807019727caf // Got them with find . -not -path '*/\.*' | sed "s/.*/\"&\",/" | grep -v sw.js // sw.js NE SME BITI CACHAN, ker vsebuje verzijo! |