mirror of https://github.com/procxx/kepka.git
Fixed sending groupId when edit media.
This commit is contained in:
parent
468975e9f3
commit
9d789c2657
|
@ -4227,7 +4227,7 @@ void HistoryWidget::sendFileConfirmed(
|
||||||
file->to.replyTo));
|
file->to.replyTo));
|
||||||
|
|
||||||
const auto newId = oldId.value_or(FullMsgId(channelId, clientMsgId()));
|
const auto newId = oldId.value_or(FullMsgId(channelId, clientMsgId()));
|
||||||
const auto groupId = file->album ? file->album->groupId : uint64(0);
|
auto groupId = file->album ? file->album->groupId : uint64(0);
|
||||||
if (file->album) {
|
if (file->album) {
|
||||||
const auto proj = [](const SendingAlbum::Item &item) {
|
const auto proj = [](const SendingAlbum::Item &item) {
|
||||||
return item.taskId;
|
return item.taskId;
|
||||||
|
@ -4261,6 +4261,15 @@ void HistoryWidget::sendFileConfirmed(
|
||||||
TextUtilities::Trim(caption);
|
TextUtilities::Trim(caption);
|
||||||
auto localEntities = TextUtilities::EntitiesToMTP(caption.entities);
|
auto localEntities = TextUtilities::EntitiesToMTP(caption.entities);
|
||||||
|
|
||||||
|
if (isEditing) {
|
||||||
|
if (const auto itemToEdit = App::histItemById(newId)) {
|
||||||
|
itemToEdit->setIsEditingMedia(true);
|
||||||
|
if (const auto id = itemToEdit->groupId()) {
|
||||||
|
groupId = id.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
auto flags = NewMessageFlags(peer)
|
auto flags = NewMessageFlags(peer)
|
||||||
| MTPDmessage::Flag::f_entities
|
| MTPDmessage::Flag::f_entities
|
||||||
| MTPDmessage::Flag::f_media;
|
| MTPDmessage::Flag::f_media;
|
||||||
|
@ -4291,11 +4300,7 @@ void HistoryWidget::sendFileConfirmed(
|
||||||
const auto messageType = isEditing
|
const auto messageType = isEditing
|
||||||
? NewMessageExisting
|
? NewMessageExisting
|
||||||
: NewMessageUnread;
|
: NewMessageUnread;
|
||||||
if (isEditing) {
|
|
||||||
if (const auto itemToEdit = App::histItemById(newId)) {
|
|
||||||
itemToEdit->setIsEditingMedia(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (file->type == SendMediaType::Photo) {
|
if (file->type == SendMediaType::Photo) {
|
||||||
auto photoFlags = MTPDmessageMediaPhoto::Flag::f_photo | 0;
|
auto photoFlags = MTPDmessageMediaPhoto::Flag::f_photo | 0;
|
||||||
auto photo = MTP_messageMediaPhoto(
|
auto photo = MTP_messageMediaPhoto(
|
||||||
|
|
Loading…
Reference in New Issue