Don't save when running in public mode
This commit is contained in:
parent
40f8a4ddc4
commit
3998998871
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue