mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Version 10.13
This commit is contained in:
@@ -475,7 +475,7 @@
|
||||
}
|
||||
|
||||
id<TGMediaEditAdjustments> adjustments = [strongSelf->_editingContext adjustmentsForItem:asset];
|
||||
if ([adjustments isKindOfClass:[TGMediaVideoEditAdjustments class]] && ((TGMediaVideoEditAdjustments *)adjustments).sendAsGif)
|
||||
if ([adjustments isKindOfClass:[TGMediaVideoEditAdjustments class]] && (((TGMediaVideoEditAdjustments *)adjustments).sendAsGif || ((TGMediaVideoEditAdjustments *)adjustments).sendAsTelescope))
|
||||
{
|
||||
onlyGroupableMedia = false;
|
||||
break;
|
||||
@@ -957,7 +957,7 @@
|
||||
id<TGMediaEditAdjustments> adjustments = [editingContext adjustmentsForItem:asset];
|
||||
if ([adjustments isKindOfClass:[TGVideoEditAdjustments class]]) {
|
||||
TGVideoEditAdjustments *videoAdjustments = (TGVideoEditAdjustments *)adjustments;
|
||||
if (videoAdjustments.sendAsGif) {
|
||||
if (videoAdjustments.sendAsGif || videoAdjustments.sendAsTelescope) {
|
||||
grouping = false;
|
||||
}
|
||||
}
|
||||
@@ -1485,7 +1485,7 @@
|
||||
id<TGMediaEditAdjustments> adjustments = [editingContext adjustmentsForItem:asset];
|
||||
if ([adjustments isKindOfClass:[TGVideoEditAdjustments class]]) {
|
||||
TGVideoEditAdjustments *videoAdjustments = (TGVideoEditAdjustments *)adjustments;
|
||||
if (videoAdjustments.sendAsGif) {
|
||||
if (videoAdjustments.sendAsGif || videoAdjustments.sendAsTelescope) {
|
||||
grouping = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user