handle impossible default state since that's what we do now

10.3.x-maintenance
cTn 2014-09-21 20:40:33 +02:00
parent a0ed27c161
commit 6d44499f99
1 changed files with 3 additions and 0 deletions

View File

@ -146,6 +146,9 @@ var MSP = {
this.message_length_received = 0; this.message_length_received = 0;
this.state = 0; this.state = 0;
break; break;
default:
console.log('Unknown state detected: ' + this.state);
} }
} }
}, },