parent
b5cd732372
commit
5e871ca7ba
1 changed files with 8 additions and 0 deletions
|
@ -39,6 +39,14 @@ impl PerformCrud for GetPrivateMessages {
|
||||||
})
|
})
|
||||||
.await??;
|
.await??;
|
||||||
|
|
||||||
|
// Messages sent by ourselves should be marked as read. The `read` column in database is only
|
||||||
|
// for the recipient, and shouldnt be exposed to sender.
|
||||||
|
messages.iter_mut().for_each(|pmv| {
|
||||||
|
if pmv.creator.id == person_id {
|
||||||
|
pmv.private_message.read = true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Blank out deleted or removed info
|
// Blank out deleted or removed info
|
||||||
for pmv in messages
|
for pmv in messages
|
||||||
.iter_mut()
|
.iter_mut()
|
||||||
|
|
Loading…
Reference in a new issue