Compare commits

..

No commits in common. "d4fcf40b8d78e25813416269ca5b77c64a685087" and "0089d6f12535db869e6793db6137cb5847cf44c5" have entirely different histories.

2 changed files with 10 additions and 8 deletions

View File

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

View File

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