mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
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