Skip to content

Commit

Permalink
Cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
alfogrillo committed Jan 9, 2023
1 parent ca2eab7 commit 6b348d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MatrixSDK/Data/MXRoom.m
Original file line number Diff line number Diff line change
Expand Up @@ -2449,17 +2449,17 @@ - (NSString*)replyMessageFormattedBodyFromEventToReply:(MXEvent*)eventToReply

- (BOOL)canReplyToEvent:(MXEvent *)eventToReply
{
if(eventToReply.eventType == MXEventTypePollStart)
if (eventToReply.eventType == MXEventTypePollStart)
{
return YES;
}

if(eventToReply.eventType == MXEventTypePollEnd)
if (eventToReply.eventType == MXEventTypePollEnd)
{
return YES;
}

if(eventToReply.eventType == MXEventTypeBeaconInfo)
if (eventToReply.eventType == MXEventTypeBeaconInfo)
{
return YES;
}
Expand Down

0 comments on commit 6b348d2

Please sign in to comment.