mirror of
https://github.com/TurboWarp/packager.git
synced 2024-11-25 16:35:59 +08:00
Do not reconnect to cloud variable server on code 4003
This commit is contained in:
parent
22470fcce5
commit
051aec531b
@ -158,6 +158,10 @@ class WebSocketProvider {
|
||||
console.log('Username is invalid; not reconnecting.');
|
||||
return;
|
||||
}
|
||||
if (e && e.code === 4003) {
|
||||
console.log('Cloud variable server is full; not reconnecting.');
|
||||
return;
|
||||
}
|
||||
if (e && e.code === 4004) {
|
||||
console.log('Project is blocked; not reconnecting.');
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user