Browse Source

Fix issues with the new debugging code

master
yflory 9 months ago
parent
commit
8a658336a7
2 changed files with 2 additions and 1 deletions
  1. 2
      www/common/sframe-common-outer.js
  2. 1
      www/debug/inner.js

2
www/common/sframe-common-outer.js

@ -853,7 +853,7 @@ define([
msg: crypto.decrypt(_msg.msg, true, true)
});
} else {
decryptedMsgs.push(crypto.decrypt(_msg.msg, true, true));
decryptedMsgs.push(crypto.decrypt(_msg, true, true));
}
setTimeout(waitFor(function () {
sframeChan.event('EV_FULL_HISTORY_STATUS', (i+1)/total);

1
www/debug/inner.js

@ -401,6 +401,7 @@ define([
userName: 'debug',
initialState: '',
logLevel: 2,
noPrune: true,
validateContent: function (content) {
try {
JSON.parse(content);

Loading…
Cancel
Save