mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 17:12:45 +02:00
Sending the file with it's actual fiename, changes temporary search bar stykle to match the real one's style, showing only joined rooms for sharing
This commit is contained in:
@@ -59,14 +59,14 @@
|
||||
|
||||
if (self.dataSourceMode == RecentsDataSourceModePeople)
|
||||
{
|
||||
if (room.isDirect)
|
||||
if (room.isDirect && room.state.membership == MXMembershipJoin)
|
||||
{
|
||||
[self.recentPeople addObject:cellData];
|
||||
}
|
||||
}
|
||||
else if (self.dataSourceMode == RecentsDataSourceModeRooms)
|
||||
{
|
||||
if (!room.isDirect)
|
||||
if (!room.isDirect && room.state.membership == MXMembershipJoin)
|
||||
{
|
||||
[self.recentRooms addObject:cellData];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user