remove the sessionId from the ctx #25

Merged
lash merged 1 commits from remove-session-id-from-ctx into master 2025-02-20 17:28:55 +01:00
2 changed files with 8 additions and 10 deletions

View File

@ -62,7 +62,6 @@ func main() {
}
ctx := context.Background()
ctx = context.WithValue(ctx, "SessionId", sessionId)
ln, err := lang.LanguageFromCode(config.Language())
if err != nil {

View File

@ -42,7 +42,6 @@ func main() {
}
ctx := context.Background()
ctx = context.WithValue(ctx, "SessionId", sessionId)
pfp := path.Join(scriptDir, "pp.csv")
flagParser, err := application.NewFlagManager(pfp)