Skip to content

Commit

Permalink
bus: fix jape
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Feb 14, 2024
1 parent d90e42f commit dff33cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bus/bus.go
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ func (b *bus) slabbuffersHandlerGET(jc jape.Context) {

func (b *bus) objectsStatshandlerGET(jc jape.Context) {
opts := api.ObjectsStatsOpts{}
if jc.DecodeForm(("bucket"), &opts.Bucket) != nil {
if jc.DecodeForm("bucket", &opts.Bucket) != nil {
return
}
info, err := b.ms.ObjectsStats(jc.Request.Context(), opts)
Expand Down

0 comments on commit dff33cd

Please sign in to comment.