We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d46fd35 commit 0182bd5Copy full SHA for 0182bd5
packages/host/app/components/matrix/room.gts
@@ -466,10 +466,7 @@ export default class Room extends Component<Signature> {
466
)}`;
467
}
468
469
- private sendReadReceipt(message?: Message) {
470
- if (!message) {
471
- return;
472
- }
+ private sendReadReceipt(message: Message) {
473
if (this.matrixService.profile.userId === message.author.userId) {
474
return;
475
packages/host/app/lib/matrix-classes/room.ts
@@ -71,10 +71,6 @@ export default class Room {
71
);
72
73
74
- get members() {
75
- return this._roomState?.members;
76
77
-
78
get activeLLM() {
79
let event = this._roomState?.events
80
.get(APP_BOXEL_ACTIVE_LLM)
0 commit comments