This commit is contained in:
Louis Lam 2023-05-08 22:39:32 +08:00
parent f0beccf6bf
commit 5cd506e340

View File

@ -25,7 +25,7 @@ class Telegram extends NotificationProvider {
return okMsg;
} catch (error) {
let msg = (error.response.data.description) ? error.response.data.description : "Error without description";
let msg = (error.response && error.response.data && error.response.data.description) ? error.response.data.description : "Error without description";
throw new Error(msg);
}
}