refactor: Adjust state event design

This commit is contained in:
Christian Kußowski 2025-12-06 10:37:07 +01:00
commit fc052c84ac
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
5 changed files with 8 additions and 72 deletions

View file

@ -37,13 +37,13 @@ class MatrixLocals extends MatrixLocalizations {
}
@override
String changedTheChatDescriptionTo(String senderName, String content) {
return l10n.changedTheChatDescriptionTo(senderName, content);
String changedTheChatDescriptionTo(String senderName, _) {
return l10n.changedTheChatDescription(senderName);
}
@override
String changedTheChatNameTo(String senderName, String content) {
return l10n.changedTheChatNameTo(senderName, content);
String changedTheChatNameTo(String senderName, _) {
return l10n.changedTheChatName(senderName);
}
@override