mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
made the way telegram handles axios errors like all the other notification providers (#3623)
This commit is contained in:
parent
7c49f7e5a6
commit
0fe8d04f78
@ -28,11 +28,7 @@ class Telegram extends NotificationProvider {
|
|||||||
return okMsg;
|
return okMsg;
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error.response && error.response.data && error.response.data.description) {
|
this.throwGeneralAxiosError(error);
|
||||||
throw new Error(error.response.data.description);
|
|
||||||
} else {
|
|
||||||
throw new Error(error.message);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user