diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index 4e7f00d96..85368e778 100644 --- a/dashboard/dashboard.go +++ b/dashboard/dashboard.go @@ -419,7 +419,6 @@ $(function() { if err != nil { fmt.Fprintln(os.Stderr, err) } - bots[i].url = s.builderUrl status_ch <- status_ret{i, s, err} }(i) } @@ -437,7 +436,7 @@ $(function() { go func() { ossfuzz_ch <- GetOssFuzzStatusString() }() for i := range bots { - if bots[i].url == "" { + if statuses[i].builderUrl == "" { fmt.Println(fmt.Sprintf("

", maxStatuses+3)) fmt.Println(bots[i].name) fmt.Println("

") @@ -492,7 +491,7 @@ $(function() { style = class(statuses[i].statuses[0].success) } - r += td("", a(bots[i].url, span(style, bots[i].name))) + r += td("", a(statuses[i].builderUrl, span(style, bots[i].name))) if errors[i] != nil { errStr := errors[i].Error()