Version 10.13

This commit is contained in:
Kylmakalle
2024-07-02 19:58:37 +03:00
parent c0c8d86c14
commit 27f17e3297
634 changed files with 31053 additions and 1247 deletions

View File

@@ -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;
}
}