Update format.js
This commit is contained in:
parent
b174e5e178
commit
0529364483
|
@ -106,7 +106,10 @@ function addMissingData(channel) {
|
||||||
function updateStatus(channel, status) {
|
function updateStatus(channel, status) {
|
||||||
if (status.ok) {
|
if (status.ok) {
|
||||||
channel.status = null
|
channel.status = null
|
||||||
} else if (status.reason.includes('timed out')) {
|
} else if (
|
||||||
|
status.reason.includes('timed out') ||
|
||||||
|
status.reason.includes('not one of 40{0,1,3,4}')
|
||||||
|
) {
|
||||||
// nothing
|
// nothing
|
||||||
} else {
|
} else {
|
||||||
channel.status = 'Offline'
|
channel.status = 'Offline'
|
||||||
|
|
Loading…
Reference in New Issue