From 513101a189b8a2024337ed2f1a95d156dc4d693a Mon Sep 17 00:00:00 2001 From: Florian Mayer Date: Fri, 1 Nov 2024 17:50:03 -0700 Subject: [PATCH] Do not modify sanitizer URLs This is confusing and unnecessary --- dashboard/dashboard.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dashboard/dashboard.go b/dashboard/dashboard.go index b01c56247..51fc95fbe 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()