mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 23:18:27 +02:00
element-hq/element-meta/issues/2201 - Disable mark as unread
- relates to element-hq/element-meta/issues/891 - relates to element-hq/element-ios/issues/7253
This commit is contained in:
@@ -93,13 +93,7 @@
|
||||
self.lastEventDecriptionLabelTrailingConstraint.constant = self.unsentImageView.hidden ? 10 : 30;
|
||||
|
||||
// Notify unreads and bing
|
||||
if (roomCellData.isRoomMarkedAsUnread)
|
||||
{
|
||||
self.missedNotifAndUnreadBadgeBgView.hidden = NO;
|
||||
self.missedNotifAndUnreadBadgeBgView.backgroundColor = ThemeService.shared.theme.tintColor;
|
||||
self.missedNotifAndUnreadBadgeBgViewWidthConstraint.constant = 20;
|
||||
}
|
||||
else if (roomCellData.hasUnread)
|
||||
if (roomCellData.hasUnread)
|
||||
{
|
||||
self.missedNotifAndUnreadIndicator.hidden = NO;
|
||||
if (0 < roomCellData.notificationCount)
|
||||
|
||||
@@ -34,7 +34,7 @@ class RoomActionProvider: RoomActionProviderProtocol {
|
||||
|
||||
var menu: UIMenu {
|
||||
if service.isRoomJoined {
|
||||
var children = service.hasUnread ? [self.markAsReadAction] : [self.markAsUnreadAction]
|
||||
var children = service.hasUnread ? [self.markAsReadAction] : []
|
||||
children.append(contentsOf: [
|
||||
self.directChatAction,
|
||||
self.notificationsAction,
|
||||
|
||||
@@ -38,7 +38,7 @@ class RoomContextActionService: NSObject, RoomContextActionServiceProtocol {
|
||||
self.room = room
|
||||
self.delegate = delegate
|
||||
self.isRoomJoined = room.summary?.isJoined ?? false
|
||||
self.hasUnread = (room.summary?.hasAnyUnread ?? false) || room.isMarkedAsUnread
|
||||
self.hasUnread = room.summary?.hasAnyUnread ?? false
|
||||
self.roomMembership = room.summary?.membership ?? .unknown
|
||||
self.session = room.mxSession
|
||||
self.unownedRoomService = UnownedRoomContextActionService(roomId: room.roomId, canonicalAlias: room.summary?.aliases?.first, session: self.session, delegate: delegate)
|
||||
|
||||
1
changelog.d/pr-7758.change
Normal file
1
changelog.d/pr-7758.change
Normal file
@@ -0,0 +1 @@
|
||||
Disable the mark as unread feature to avoid it clashing with the new MSC2876 based one
|
||||
Reference in New Issue
Block a user