diff --git a/plugins/c9.vfs.client/vfs_client.js b/plugins/c9.vfs.client/vfs_client.js index 227dd9c2..fbeb8195 100644 --- a/plugins/c9.vfs.client/vfs_client.js +++ b/plugins/c9.vfs.client/vfs_client.js @@ -251,6 +251,9 @@ define(function(require, exports, module) { }); case "reload": lastError = showError(err.message + ". Please reload this window.", -1); + setTimeout(function() { + window.location.reload(); + }, (Math.random() * 8) + 2 * 60 * 1000); break; default: lastError = showError(err, -1);