Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
변경된 DevURL 따라서 Scheme도 변경 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
l2hyunwoo authored Apr 21, 2023
1 parent e088e60 commit f440451
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ internal class PlaygroundApiManager private constructor(
}

private fun createRetrofit(isDebug: Boolean) = ServiceFactory.withClient(
url = "${if (isDebug) Constants.NOT_SECURE_SCHEME else Constants.SCHEME}://${if (isDebug) PlaygroundInfo.DEBUG_AUTH_HOST else PlaygroundInfo.RELEASE_AUTH_HOST}",
url = "${Constants.SCHEME}://${if (isDebug) PlaygroundInfo.DEBUG_AUTH_HOST else PlaygroundInfo.RELEASE_AUTH_HOST}",
client = OkHttpClient.Builder()
.addInterceptor(ServiceFactory.loggingInterceptor)
.build()
Expand Down

0 comments on commit f440451

Please sign in to comment.