mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-28 10:53:40 +03:00
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
|
||||
}
|
||||
|
||||
if (!response) {
|
||||
if (!response || !response.message) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue