Skip to content

Commit

Permalink
Merge pull request #259 from DroidKaigi/takahirom/remove-auth-for-now…
Browse files Browse the repository at this point in the history
…-to-resolve-timeout/2024-08-11

Remove auth call to resolve timeout
  • Loading branch information
takahirom authored Aug 11, 2024
2 parents fa17d3a + 4e0b379 commit a2311a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class NetworkService(public val httpClient: HttpClient, public val authAp
public suspend inline operator fun <reified T : Any> invoke(
block: () -> T,
): T = try {
authApi.authIfNeeded()
// authApi.authIfNeeded()
block()
} catch (e: Throwable) {
throw e.toAppError()
Expand Down

0 comments on commit a2311a5

Please sign in to comment.