Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

appview: fix oauth client URI

there was a change that removed the scheme from appview host, this was
not reflected in the non-dev oauth config.

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
date (Feb 16, 2026, 3:32 AM UTC) commit 0ab3af52 parent c4e5e347 change-id twktnspo
+1 -1
+1 -1
appview/oauth/oauth.go
··· 43 43 callbackUri := clientUri + "/oauth/callback" 44 44 oauthConfig = oauth.NewLocalhostConfig(callbackUri, TangledScopes) 45 45 } else { 46 - clientUri = config.Core.AppviewHost 46 + clientUri = "https://" + config.Core.AppviewHost 47 47 clientId := fmt.Sprintf("%s/oauth/client-metadata.json", clientUri) 48 48 callbackUri := clientUri + "/oauth/callback" 49 49 oauthConfig = oauth.NewPublicConfig(clientId, callbackUri, TangledScopes)