delete images if they where send in a direct chat
Some checks failed
Flutter analyze & test / flutter_analyze_and_test (push) Has been cancelled

This commit is contained in:
otsmr 2026-05-02 22:57:19 +02:00
parent 6a611767fc
commit cdababa3c8

View file

@ -97,7 +97,7 @@ class MediaFileService {
final group = await twonlyDB.groupsDao.getGroup( final group = await twonlyDB.groupsDao.getGroup(
message.groupId, message.groupId,
); );
if (group != null) { if (group != null && !group.isDirectChat) {
delete = false; delete = false;
} }
} }