fixed conversations list update on message edit

This commit is contained in:
John Preston 2016-02-26 16:00:48 +03:00
parent 1bd986d2cb
commit 6fae60b6bb
2 changed files with 10 additions and 1 deletions

View File

@ -931,6 +931,12 @@ namespace App {
existing->updateMedia(m.has_media() ? (&m.vmedia) : 0, true);
existing->setViewsCount(m.has_views() ? m.vviews.v : -1, false);
existing->initDimensions();
if (existing->history()->textCachedFor == existing) {
existing->history()->textCachedFor = 0;
}
if (App::main()) {
App::main()->dlgUpdated(existing->history(), existing->id);
}
Notify::historyItemResized(existing);
}
}

View File

@ -531,7 +531,10 @@ namespace _mtp_internal {
return;
}
} else {
if (h.onDone) (*h.onDone)(requestId, from, end);
if (h.onDone) {
// t_assert(App::app() != 0);
(*h.onDone)(requestId, from, end);
}
}
} catch (Exception &e) {
if (!rpcErrorOccured(requestId, h, rpcClientError("RESPONSE_PARSE_FAILED", QString("exception text: ") + e.what()))) {