Introduce messageDetailsAllowSaving

This commit is contained in:
ismailgulek 2020-08-14 14:06:22 +03:00
parent 7d8ec373f2
commit 0b0be7fcfc
2 changed files with 37 additions and 33 deletions

View file

@ -186,6 +186,7 @@ final class BuildSettings: NSObject {
static let messageDetailsAllowShare: Bool = true
static let messageDetailsAllowPermalink: Bool = true
static let messageDetailsAllowViewSource: Bool = true
static let messageDetailsAllowSaving: Bool = true
// MARK: - Authentication Screen

View file

@ -2608,6 +2608,8 @@
}
}
else // Add action for attachment
{
if (BuildSettings.messageDetailsAllowSaving)
{
if (attachment.type == MXKAttachmentTypeImage || attachment.type == MXKAttachmentTypeVideo)
{
@ -2644,6 +2646,7 @@
}]];
}
}
// Check status of the selected event
if (selectedEvent.sentState == MXEventSentStatePreparing ||