Skip to content

Commit

Permalink
Version 7 / Login version 16: Fixed error in login page's global erro…
Browse files Browse the repository at this point in the history
…r handler.
  • Loading branch information
bp2008 committed Apr 11, 2018
1 parent 7ea4482 commit b55c75a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions login.htm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Blue Iris Login</title>
<script type="text/javascript">
var login_version = "15";
var login_version = "16";
var bi_version = "%%VERSION%%";
var combined_version = login_version + "-" + bi_version;
</script>
Expand All @@ -21,7 +21,7 @@
if (typeof bi_version != "undefined")
biVersionStr = bi_version;
url = url.replace(/\/\/.*?\//, '//censored_hostname/');
alert("An unexpected error has occurred in Blue Iris Login (v " + uiVersionStr + " / " + biVersionStr + "). If you wish to report the error, please SCREENSHOT the browser now.\n\n" + msg + "\nat " + url + " [" + line + ":" + charIdx + "]\n" + navigator.userAgent);
alert("An unexpected error has occurred in Blue Iris Login (v " + versionStr + " / " + biVersionStr + "). If you wish to report the error, please SCREENSHOT the browser now.\n\n" + msg + "\nat " + url + " [" + line + ":" + charIdx + "]\n" + navigator.userAgent);
}
catch (ex)
{
Expand Down
2 changes: 1 addition & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
};
</script>
<script type="text/javascript">
var ui_version = "6";
var ui_version = "7";
var bi_version = "%%VERSION%%";
var combined_version = ui_version + "-" + bi_version;
//if (!!navigator.userAgent.match(/ Android /))
Expand Down

0 comments on commit b55c75a

Please sign in to comment.