Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-30 16:48:26 +03:00
parent acf110dbcc
commit 6910f74fd9
242 changed files with 866 additions and 732 deletions

View file

@ -47,7 +47,7 @@ suspend inline fun <T> safeApiCallWithTimeout(
): T = safeApiCall(
call = {
withTimeoutOrNull(timeoutMillis) { call() }
?: raise(ApiResponseError.TimeoutException)
?: raise(ApiResponseError.TimeoutException())
},
onError = onError,
)