fix: Delete now deletes a single image

This commit is contained in:
Deven Joshi
2021-02-25 14:47:04 +05:30
parent 0b69d41328
commit 492727754c
@@ -103,11 +103,11 @@ class ImageActionsModal extends StatelessWidget {
color: StreamChatTheme.of(context).colorTheme.accentRed,
),
() {
var channel = StreamChannel.of(context).channel;
channel.updateMessage(
message..attachments.removeAt(currentIndex));
Navigator.pop(context);
Navigator.pop(context);
StreamChannel.of(context)
.channel
.deleteMessage(message);
},
color: StreamChatTheme.of(context).colorTheme.accentRed,
),