Skip to content

Commit

Permalink
Complete previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Jan 2, 2024
1 parent d302e8d commit ef29239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v2/app/BlockDecompressor.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ func NewBlockDecompressor(argsMap map[string]any) (*BlockDecompressor, error) {

concurrency := argsMap["jobs"].(uint)
delete(argsMap, "jobs")
this.verbosity = argsMap["verbose"].(uint)
delete(argsMap, "verbose")
this.verbosity = argsMap["verbosity"].(uint)
delete(argsMap, "verbosity")

if v, hasKey := argsMap["from"]; hasKey == true {
this.from = v.(int)
Expand Down

0 comments on commit ef29239

Please sign in to comment.