Fix embarrassing non existend HTTP request method...
This commit is contained in:
parent
baddb806ce
commit
c3cd1cc6e3
|
@ -342,7 +342,7 @@ class Room {
|
||||||
|
|
||||||
Future<dynamic> sendReadReceipt(String eventID) async {
|
Future<dynamic> sendReadReceipt(String eventID) async {
|
||||||
final dynamic resp = client.connection.jsonRequest(
|
final dynamic resp = client.connection.jsonRequest(
|
||||||
type: "fully_read",
|
type: "POST",
|
||||||
action: "/client/r0/rooms/$id/read_markers",
|
action: "/client/r0/rooms/$id/read_markers",
|
||||||
data: {
|
data: {
|
||||||
"m.fully_read": eventID,
|
"m.fully_read": eventID,
|
||||||
|
|
Loading…
Reference in a new issue