Fix mistake

This commit is contained in:
Benoit Marty 2020-09-30 11:45:21 +02:00
parent b5311aa3df
commit 2f054cd438
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ class NoticeEventFormatter @Inject constructor(private val activeSessionDataSour
if (event.isSentByCurrentUser())
sp.getString(if (event.isDm()) R.string.notice_direct_room_created_by_you else R.string.notice_room_created_by_you)
else
sp.getString(if (event.isDm()) R.string.notice_room_created_by_you else R.string.notice_room_created, it.creator)
sp.getString(if (event.isDm()) R.string.notice_direct_room_created else R.string.notice_room_created, it.creator)
}
}