Skip to content

Commit 696a7dc

Browse files
committed
Merge pull request #2958 from bmatusiak/bmConcurrency
remove Concurrency bug for local env
2 parents 403fa0f + 49f5c7f commit 696a7dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins-client/ext.console/console.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ module.exports = ext.register("ext/console/console", {
462462

463463
(function () {
464464
var prjmatch = message.data.match(/http\:\/\/([\w_-]+)\.([\w_-]+)\./);
465-
if (!prjmatch) return;
465+
if (!prjmatch || ide.env == "local") return;
466466

467467
var user = prjmatch[2];
468468
var project = prjmatch[1];

0 commit comments

Comments
 (0)