|
|
@ -44,7 +44,6 @@ define([
|
|
|
|
History.readOnly = 2;
|
|
|
|
History.readOnly = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!secret.keys.validateKey) {
|
|
|
|
else if (!secret.keys.validateKey) {
|
|
|
|
secret.keys.validateKey = true;
|
|
|
|
|
|
|
|
History.readOnly = 0;
|
|
|
|
History.readOnly = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -70,6 +69,10 @@ define([
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (parsed[0] !== 'FULL_HISTORY') { return; }
|
|
|
|
if (parsed[0] !== 'FULL_HISTORY') { return; }
|
|
|
|
|
|
|
|
if (parsed[1] && parsed[1].validateKey) { // First message
|
|
|
|
|
|
|
|
secret.keys.validateKey = parsed[1].validateKey;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
msg = parsed[1][4];
|
|
|
|
msg = parsed[1][4];
|
|
|
|
if (msg) {
|
|
|
|
if (msg) {
|
|
|
|
msg = msg.replace(/^cp\|/, '');
|
|
|
|
msg = msg.replace(/^cp\|/, '');
|
|
|
|