Fix conversation home reachability and Android timeout

This commit is contained in:
kris
2026-04-05 14:16:18 +08:00
parent 08a746c3bf
commit 272698234d
4 changed files with 51 additions and 5 deletions

View File

@@ -90,7 +90,13 @@ public class BossApiClient {
}
public ApiResponse getConversationHome() throws IOException, JSONException {
return requestWithRestore("GET", "/api/v1/conversations/home", null);
return requestWithRestoreRaw(
"GET",
"/api/v1/conversations/home",
null,
DEFAULT_CONNECT_TIMEOUT_MS,
CONVERSATIONS_READ_TIMEOUT_MS
);
}
public ApiResponse getConversationFolder(String folderKey) throws IOException, JSONException {