mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 01:52:44 +02:00
Display redacted events only if threads enabled
This commit is contained in:
@@ -68,7 +68,7 @@ static NSString *const kEventFormatterTimeFormat = @"HH:mm";
|
||||
if (event.isRedactedEvent)
|
||||
{
|
||||
// Check whether the event is a thread root or redacted information is required
|
||||
if ([mxSession.threadingService isEventThreadRoot:event]
|
||||
if ((RiotSettings.shared.enableThreads && [mxSession.threadingService isEventThreadRoot:event])
|
||||
|| self.settings.showRedactionsInRoomHistory)
|
||||
{
|
||||
UIFont *font = self.defaultTextFont;
|
||||
|
||||
Reference in New Issue
Block a user