From d5a743622f8529a2af7c69304bdf859e91919662 Mon Sep 17 00:00:00 2001 From: OfficialDakari Date: Tue, 21 Oct 2025 19:14:23 +0500 Subject: [PATCH] add trailing comma --- lib/src/thread.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/thread.dart b/lib/src/thread.dart index e9fe0798..fc68bc48 100644 --- a/lib/src/thread.dart +++ b/lib/src/thread.dart @@ -21,7 +21,8 @@ class Thread { null) { lastEvent = Event.fromMatrixEvent( MatrixEvent.fromJson( - json['unsigned']?['m.relations']?['m.thread']?['latest_event']), + json['unsigned']?['m.relations']?['m.thread']?['latest_event'], + ), room, ); }