mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-07 20:25:48 +08:00
Bugfix: quotaDebounce was removed
This commit is contained in:
parent
2a7348081a
commit
a3f096b540
2 changed files with 2 additions and 3 deletions
|
@ -236,7 +236,6 @@ class AppUser extends AbstractApp {
|
||||||
setFolderHash(FolderUserStore.currentFolderFullNameRaw(), '');
|
setFolderHash(FolderUserStore.currentFolderFullNameRaw(), '');
|
||||||
}
|
}
|
||||||
this.reloadMessageList(!MessageUserStore.list.length);
|
this.reloadMessageList(!MessageUserStore.list.length);
|
||||||
this.quotaDebounce();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -861,7 +861,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
||||||
\MailSo\Log\Enumerations\Type::ERROR, true);
|
\MailSo\Log\Enumerations\Type::ERROR, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->SendRequestGetResponse($bReturnUid ? 'UID COPY' : 'COPY',
|
$this->SendRequestGetResponse($bIndexIsUid ? 'UID COPY' : 'COPY',
|
||||||
array($sIndexRange, $this->EscapeString($sToFolder)));
|
array($sIndexRange, $this->EscapeString($sToFolder)));
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
@ -887,7 +887,7 @@ class ImapClient extends \MailSo\Net\NetClient
|
||||||
\MailSo\Log\Enumerations\Type::ERROR, true);
|
\MailSo\Log\Enumerations\Type::ERROR, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->SendRequestGetResponse($bReturnUid ? 'UID MOVE' : 'MOVE',
|
$this->SendRequestGetResponse($bIndexIsUid ? 'UID MOVE' : 'MOVE',
|
||||||
array($sIndexRange, $this->EscapeString($sToFolder)));
|
array($sIndexRange, $this->EscapeString($sToFolder)));
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue