Skip to content

Commit

Permalink
Merge pull request #1812 from fmayer/rewrite
Browse files Browse the repository at this point in the history
Do not modify sanitizer URLs
  • Loading branch information
fmayer authored Nov 2, 2024
2 parents afb8633 + 513101a commit a6a191b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions dashboard/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand All @@ -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("<tr><td colspan=%d><h2>", maxStatuses+3))
fmt.Println(bots[i].name)
fmt.Println("</h2></td></tr>")
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit a6a191b

Please sign in to comment.