Fix embarrassing non existend HTTP request method...

This commit is contained in:
Christian Pauly 2019-06-14 09:52:52 +02:00
parent baddb806ce
commit c3cd1cc6e3
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class Room {
Future<dynamic> sendReadReceipt(String eventID) async {
final dynamic resp = client.connection.jsonRequest(
type: "fully_read",
type: "POST",
action: "/client/r0/rooms/$id/read_markers",
data: {
"m.fully_read": eventID,