[Event] Fix null sender

This commit is contained in:
Christian Pauly 2020-02-14 14:06:46 +00:00
parent 0f68b60f16
commit 86a192efd8
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class Event {
/// The user who has sent this event if it is not a global account data event.
final String senderId;
User get sender => room.getUserByMXIDSync(senderId);
User get sender => room.getUserByMXIDSync(senderId ?? "@unknown");
/// The time this event has received at the server. May be null for events like
/// account data.