2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-02 07:25:46 +00:00

Show toast/tooltip info on video processing.

This commit is contained in:
John Preston
2024-10-29 22:06:24 +04:00
parent 3137c9f3f7
commit 66be2ac6ca
17 changed files with 480 additions and 65 deletions

View File

@@ -4821,6 +4821,14 @@ rpl::producer<SentToScheduled> Session::sentToScheduled() const {
return _sentToScheduled.events();
}
void Session::sentFromScheduled(SentFromScheduled value) {
_sentFromScheduled.fire(std::move(value));
}
rpl::producer<SentFromScheduled> Session::sentFromScheduled() const {
return _sentFromScheduled.events();
}
void Session::clearLocalStorage() {
_cache->close();
_cache->clear();