2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 09:05:14 +00:00

Option to always use old forward method

This commit is contained in:
RadRussianRus
2021-09-20 15:56:58 +03:00
parent 2daaf3f402
commit 61761f99fd
7 changed files with 20 additions and 1 deletions

View File

@@ -3632,7 +3632,8 @@ void ApiWrap::forwardMessages(
const SendAction &action,
FnMut<void()> &&successCallback) {
if (draft.options != Data::ForwardOptions::PreserveInfo
&& draft.groupOptions == Data::GroupingOptions::RegroupAll) {
&& (draft.groupOptions == Data::GroupingOptions::RegroupAll
|| cForwardForceOld())) {
forwardMessagesUnquoted(std::move(draft), action, std::move(successCallback));
return;
}