Skip to content

Commit

Permalink
Remove cookie prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Sep 20, 2024
1 parent 2eed477 commit 5a374c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/kotlin/http4kbox/Http4kBox.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fun Http4kBox(env: Environment, http: HttpHandler, clock: Clock): HttpHandler {
val oAuthProvider = OAuthProvider(
OAUTH_BASE_URI(env), OAUTH_CALLBACK_URI(env),
http,
InsecureCookieBasedOAuthPersistence(clock.instant().toEpochMilli().toString(), clock = clock),
InsecureCookieBasedOAuthPersistence("http4kbox", clock = clock),
OAUTH_CLIENT(env)
)

Expand Down

0 comments on commit 5a374c5

Please sign in to comment.