mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-02 22:26:59 +02:00
Finalize Outgoing Messages Refactoring.
PR https://github.com/matrix-org/matrix-ios-sdk/pull/210. - Add `MXEventSentStatePreparing` value in `MXEventSentState` enum: The event is an outgoing event which is preparing by converting the data to sent, or uploading additional data.
This commit is contained in:
@@ -1746,7 +1746,9 @@
|
||||
}];
|
||||
|
||||
// Check status of the selected event
|
||||
if (selectedEvent.sentState == MXEventSentStateEncrypting || selectedEvent.sentState == MXEventSentStateUploading)
|
||||
if (selectedEvent.sentState == MXEventSentStatePreparing ||
|
||||
selectedEvent.sentState == MXEventSentStateEncrypting ||
|
||||
selectedEvent.sentState == MXEventSentStateUploading)
|
||||
{
|
||||
// Upload id is stored in attachment url (nasty trick)
|
||||
NSString *uploadId = roomBubbleTableViewCell.bubbleData.attachment.actualURL;
|
||||
|
||||
Reference in New Issue
Block a user