From ea054bd55bfea3ba36d342c960e55e5ac823f2ab Mon Sep 17 00:00:00 2001 From: Oleksandr Bazarnov Date: Wed, 2 Feb 2022 13:35:55 +0200 Subject: [PATCH] formated --- .../src/main/java/io/airbyte/oauth/flows/GithubOAuthFlow.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GithubOAuthFlow.java b/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GithubOAuthFlow.java index 47d5f5013a88b..0e6b26250f2bc 100644 --- a/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GithubOAuthFlow.java +++ b/airbyte-oauth/src/main/java/io/airbyte/oauth/flows/GithubOAuthFlow.java @@ -66,7 +66,7 @@ protected String formatConsentUrl(final UUID definitionId, .addParameter("client_id", clientId) .addParameter("redirect_uri", redirectUrl) // we add `scopes` and `state` after we've already built the url, to prevent url encoding for scopes - // see https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes + // https://docs.github.com/en/developers/apps/building-oauth-apps/scopes-for-oauth-apps#available-scopes // we need to keep scopes in the format of: < scope1%20scope2:sub_scope%20scope3 > .build().toString() + "&scope=" + getScopes() + "&state=" + getState(); } catch (final URISyntaxException e) {