forked from mirrors/easyappointments
Do not display empty messages
This commit is contained in:
parent
300ff3c2a7
commit
cb19a192a9
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ window.GeneralFunctions = window.GeneralFunctions || {};
|
||||||
response = {message: jqXHR.responseText}; // String response
|
response = {message: jqXHR.responseText}; // String response
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!response) {
|
if (!response || !response.message) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue