Skip to content

Commit

Permalink
fix sector UI (#12016)
Browse files Browse the repository at this point in the history
  • Loading branch information
LexLuthr authored May 20, 2024
1 parent bedd696 commit 0da9646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion curiosrc/web/hapi/simpleinfo_pipeline_porep.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func (a *app) pipelinePorepSectors(w http.ResponseWriter, r *http.Request) {

mbf, ok := minerBitfieldCache[addr]
if !ok {
mbf, err := a.getMinerBitfields(ctx, addr, a.stor)
mbf, err = a.getMinerBitfields(ctx, addr, a.stor)
if err != nil {
http.Error(w, xerrors.Errorf("failed to load miner bitfields: %w", err).Error(), http.StatusInternalServerError)
return
Expand Down

0 comments on commit 0da9646

Please sign in to comment.