Skip to content

Commit

Permalink
fix: config.Context for Stream method
Browse files Browse the repository at this point in the history
  • Loading branch information
whatwewant committed Jun 5, 2024
1 parent 4990eb5 commit 60d0668
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ func (c *Config) Merge(config *Config) {
c.Username = config.Username
c.Password = config.Password
}

if config.Context != nil {
c.Context = config.Context
}
}

// Clone returns a clone of the config
Expand Down

0 comments on commit 60d0668

Please sign in to comment.