1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Merge pull request #1134 from paulfariello/hotfix/don_t_highlight_cleartext_message_as_untrusted

Don t highlight cleartext message as untrusted
This commit is contained in:
Michael Vetter 2019-06-21 15:51:40 +02:00 committed by GitHub
commit 3bba3d9812
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -191,6 +191,7 @@ message_init(void)
message->plain = NULL;
message->enc = PROF_MSG_ENC_PLAIN;
message->timestamp = NULL;
message->trusted = true;
return message;
}