[Logout] Fix wrong endpoint

This commit is contained in:
Christian Pauly 2019-10-09 11:16:26 +00:00 committed by Marcel
parent 033e068169
commit 646dfcf807
1 changed files with 1 additions and 1 deletions

View File

@ -254,7 +254,7 @@ class Client {
/// including all persistent data from the store.
Future<void> logout() async {
final dynamic resp = await connection.jsonRequest(
type: HTTPType.POST, action: "/client/r0/logout/all");
type: HTTPType.POST, action: "/client/r0/logout");
if (resp is ErrorResponse) connection.onError.add(resp);
await connection.clear();