fix minor error
This commit is contained in:
parent
493b3225f6
commit
e71bed5297
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ onmessage = function(event) {
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|
||||||
// extract message
|
// extract message
|
||||||
string = buf.readString();
|
var string = buf.readString();
|
||||||
var parts = string.match(/^([^ \n]*) ([^ \n]*)(?: ([^\n]*))?\n?$/);
|
var parts = string.match(/^([^ \n]*) ([^ \n]*)(?: ([^\n]*))?\n?$/);
|
||||||
if(!parts) {
|
if(!parts) {
|
||||||
postMessage(["Exception", "Integration Worker: Invalid input received: "+string]);
|
postMessage(["Exception", "Integration Worker: Invalid input received: "+string]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue