Merge pull request #231 from xeoncore/bug/save

Don't save when running in public mode
This commit is contained in:
Mattias Erming 2014-10-12 14:36:58 +02:00
commit 6a666bfb82
1 changed files with 5 additions and 0 deletions

View File

@ -323,6 +323,11 @@ Client.prototype.quit = function() {
var timer;
Client.prototype.save = function(force) {
var client = this;
var config = Helper.getConfig();
if(config.public) {
return;
}
if (!force) {
clearTimeout(timer);