| 874 | } |
| 875 | |
| 876 | void Application::startLocalStorage() { |
| 877 | Ui::GL::DetectLastCheckCrash(); |
| 878 | Local::start(); |
| 879 | _saveSettingsTimer.emplace([=] { saveSettings(); }); |
| 880 | settings().saveDelayedRequests() | rpl::on_next([=] { |
| 881 | saveSettingsDelayed(); |
| 882 | }, _lifetime); |
| 883 | } |
| 884 | |
| 885 | void Application::startEmojiImageLoader() { |
| 886 | _emojiImageLoader.with([ |
nothing calls this directly
no test coverage detected