Skip to content

Commit e03f63c

Browse files
committed
Include self in To and Chat-Group-Past-Members
1 parent 3258c92 commit e03f63c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/mimefactory.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ impl MimeFactory {
206206
"SELECT c.authname, c.addr, c.id, cc.add_timestamp, cc.remove_timestamp
207207
FROM chats_contacts cc
208208
LEFT JOIN contacts c ON cc.contact_id=c.id
209-
WHERE cc.chat_id=? AND cc.contact_id>9",
209+
WHERE cc.chat_id=? AND cc.contact_id>9 OR cc.contact_id=1",
210210
(msg.chat_id,),
211211
|row| {
212212
let authname: String = row.get(0)?;
@@ -219,6 +219,11 @@ impl MimeFactory {
219219
|rows| {
220220
for row in rows {
221221
let (authname, addr, id, add_timestamp, remove_timestamp) = row?;
222+
let addr = if id == ContactId::SELF {
223+
from_addr.to_string()
224+
} else {
225+
addr
226+
};
222227
let name = match attach_profile_data {
223228
true => authname,
224229
false => "".to_string(),

0 commit comments

Comments
 (0)