From d49335296318b44f71368e84c1548a5d106a407a Mon Sep 17 00:00:00 2001 From: Dusan Jakub Date: Mon, 25 Sep 2023 15:36:27 +0200 Subject: [PATCH] typo --- src/main/java/com/ysoft/geecon/repo/ClientsRepo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java index 69b4686..7fc044e 100644 --- a/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java +++ b/src/main/java/com/ysoft/geecon/repo/ClientsRepo.java @@ -22,7 +22,7 @@ public class ClientsRepo { register(new OAuthClient("oauth-playground", "OAuth playground", null, List.of("https://oauth-playground.online/flow/code-2", "https://oauth-playground.online/flow/pkce-3"))); register(new OAuthClient("oauth-playground-localhost", "OAuth playground", null, - List.of("http://localhost:5555/flow/code-2", "http://localhost:5555/flow/pkce-2"))); + List.of("http://localhost:5555/flow/code-2", "http://localhost:5555/flow/pkce-3"))); } public Optional getClient(String clientId) {