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