2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-02 15:45:12 +00:00

Use notify* instead of mark* in Data::Session.

This commit is contained in:
John Preston
2018-01-17 21:20:55 +03:00
parent 8a56ede187
commit 04c8c95634
17 changed files with 137 additions and 140 deletions

View File

@@ -951,7 +951,7 @@ namespace {
if (saved.size() > Global::SavedGifsLimit()) saved.pop_back();
Local::writeSavedGifs();
Auth().data().markSavedGifsUpdated();
Auth().data().notifySavedGifsUpdated();
Auth().data().setLastSavedGifsUpdate(0);
Auth().api().updateStickers();
}
@@ -1277,7 +1277,7 @@ namespace {
if (Global::started()
&& !App::quitting()
&& AuthSession::Exists()) {
Auth().data().markItemRemoved(item);
Auth().data().notifyItemRemoved(item);
}
}