1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-16 18:01:37 +00:00

refactor(request): fix typo in big corp name

This commit is contained in:
gudvinr 2025-08-15 19:37:51 +03:00 committed by Frédéric Guillot
parent ab26a4e20f
commit 5e3bba9ae1
3 changed files with 6 additions and 6 deletions

View file

@ -230,7 +230,7 @@ func (h *handler) tokenHandler(w http.ResponseWriter, r *http.Request) {
return return
} }
token := request.GoolgeReaderToken(r) token := request.GoogleReaderToken(r)
if token == "" { if token == "" {
slog.Warn("[GoogleReader] User does not have token", slog.Warn("[GoogleReader] User does not have token",
slog.String("client_ip", clientIP), slog.String("client_ip", clientIP),

View file

@ -181,7 +181,7 @@ func (m *middleware) apiKeyAuth(next http.Handler) http.Handler {
ctx = context.WithValue(ctx, request.UserTimezoneContextKey, user.Timezone) ctx = context.WithValue(ctx, request.UserTimezoneContextKey, user.Timezone)
ctx = context.WithValue(ctx, request.IsAdminUserContextKey, user.IsAdmin) ctx = context.WithValue(ctx, request.IsAdminUserContextKey, user.IsAdmin)
ctx = context.WithValue(ctx, request.IsAuthenticatedContextKey, true) ctx = context.WithValue(ctx, request.IsAuthenticatedContextKey, true)
ctx = context.WithValue(ctx, request.GoogleReaderToken, token) ctx = context.WithValue(ctx, request.GoogleReaderTokenKey, token)
next.ServeHTTP(w, r.WithContext(ctx)) next.ServeHTTP(w, r.WithContext(ctx))
}) })

View file

@ -31,7 +31,7 @@ const (
FlashErrorMessageContextKey FlashErrorMessageContextKey
LastForceRefreshContextKey LastForceRefreshContextKey
ClientIPContextKey ClientIPContextKey
GoogleReaderToken GoogleReaderTokenKey
WebAuthnDataContextKey WebAuthnDataContextKey
) )
@ -44,9 +44,9 @@ func WebAuthnSessionData(r *http.Request) *model.WebAuthnSession {
return nil return nil
} }
// GoolgeReaderToken returns the google reader token if it exists. // GoogleReaderToken returns the google reader token if it exists.
func GoolgeReaderToken(r *http.Request) string { func GoogleReaderToken(r *http.Request) string {
return getContextStringValue(r, GoogleReaderToken) return getContextStringValue(r, GoogleReaderTokenKey)
} }
// IsAdminUser checks if the logged user is administrator. // IsAdminUser checks if the logged user is administrator.