Added details for chats with participants list

This commit is contained in:
2023-09-13 18:57:52 +02:00
parent 3b673537e5
commit 0b48c2e7ab
13 changed files with 380 additions and 20 deletions

@ -55,9 +55,9 @@ abstract class TalkApi<T> extends ApiRequest {
try {
assembled = assemble(data.body);
return assembled;
} catch (_) {
} catch (e) {
// TODO report error
log("Error assembling Talk API ${T.toString()} response on ${endpoint.path} with body: $body and headers: ${headers.toString()}");
log("Error assembling Talk API ${T.toString()} message: ${e.toString()} response on ${endpoint.path} with request body: $body and request headers: ${headers.toString()}");
}
throw Exception("Error assembling Talk API response");