Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Fix const syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed Jun 10, 2024
1 parent 7b488bf commit c2a2ab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/spf13/viper"
)

const ExpectedScope := "posthog:livestream"
const ExpectedScope = "posthog:livestream"

func decodeAuthToken(authHeader string) (jwt.MapClaims, error) {
// split the token
Expand Down

0 comments on commit c2a2ab1

Please sign in to comment.