We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5552179 commit cb0faccCopy full SHA for cb0facc
src/themes/smalltalk.view
@@ -443,17 +443,17 @@
443
autoupdate();
444
is_running = false;
445
}).fail(function( msg ) {
446
- msg = msg.responseJSON;
447
- if(msg.error == "expired") {
+ $msg = msg.responseJSON;
+ if($msg.error == "expired") {
448
command("expired");
449
}
450
- else if(msg.error == "session-timeout") {
+ else if($msg.error == "session-timeout") {
451
command("session-timeout");
452
453
else {
454
connection_timer.start();
455
456
- console.log(msg);
+ console.log($msg);
457
458
});
459
0 commit comments