From 56514d423f19f798069c6f8788213ae3b0adf25e Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Tue, 11 Jun 2019 13:45:00 +0200 Subject: [PATCH] Fix typo --- lib/src/Room.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/Room.dart b/lib/src/Room.dart index 21e48ffb..69c0853b 100644 --- a/lib/src/Room.dart +++ b/lib/src/Room.dart @@ -275,7 +275,7 @@ class Room { client.connection.onEvent.add(eventUpdate); client.store.storeEventUpdate(eventUpdate); client.store.txn.rawUpdate( - "UPDATE Rooms SET prev_batch=? WHERE id=?", [ resp.["end"], id ]); + "UPDATE Rooms SET prev_batch=? WHERE id=?", [ resp["end"], id ]); } }); }