mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-26 11:01:09 -04:00
Fix: incorrect radius error handling
This commit is contained in:
parent
8e72d6f534
commit
573f158f7f
2 changed files with 20 additions and 23 deletions
|
@ -486,6 +486,7 @@ exports.radius = function (
|
|||
host: hostname,
|
||||
hostPort: port,
|
||||
timeout: timeout,
|
||||
retries: 1,
|
||||
dictionaries: [ file ],
|
||||
});
|
||||
|
||||
|
@ -497,6 +498,12 @@ exports.radius = function (
|
|||
[ attributes.CALLING_STATION_ID, callingStationId ],
|
||||
[ attributes.CALLED_STATION_ID, calledStationId ],
|
||||
],
|
||||
}).catch((error) => {
|
||||
if (error.response?.code) {
|
||||
throw Error(error.response.code);
|
||||
} else {
|
||||
throw Error(error.message);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue