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

Commit

Permalink
fix(command): missing context during play a new track
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Aug 24, 2024
1 parent 6151062 commit fd3c516
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bot/log/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func NewCtxWithRequestID(ctx context.Context) Context {
requestID = ""
}

return NewContext(nil, requestID)
return NewContext(context.Background(), requestID)
}

func NewContext(ctx context.Context, uuid string) Context {
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, act
, ...
}: mkShell {
NIX_HARDENING_ENABLE = "";
hardeningDisable = [ "all" ];
nativeBuildInputs = [
go
Expand Down

0 comments on commit fd3c516

Please sign in to comment.