display N/A instead of undefined in fatal errors when ext_info is not present
This commit is contained in:
parent
b15e516ec4
commit
91743a49ff
|
@ -18,6 +18,8 @@ function is_opera() {
|
||||||
function exception_error(location, e, ext_info) {
|
function exception_error(location, e, ext_info) {
|
||||||
var msg = format_exception_error(location, e);
|
var msg = format_exception_error(location, e);
|
||||||
|
|
||||||
|
if (!ext_info) ext_info = "N/A";
|
||||||
|
|
||||||
disableHotkeys();
|
disableHotkeys();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -1498,6 +1500,8 @@ function storeInitParam(key, value) {
|
||||||
function fatalError(code, msg, ext_info) {
|
function fatalError(code, msg, ext_info) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
if (!ext_info) ext_info = "N/A";
|
||||||
|
|
||||||
if (code == 6) {
|
if (code == 6) {
|
||||||
window.location.href = "tt-rss.php";
|
window.location.href = "tt-rss.php";
|
||||||
} else if (code == 5) {
|
} else if (code == 5) {
|
||||||
|
|
Loading…
Reference in New Issue