Skip to content

Commit

Permalink
Strip tabs from certificates; update them again
Browse files Browse the repository at this point in the history
  • Loading branch information
fatalbanana committed Jul 31, 2024
1 parent 88ed22c commit 22fd969
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func main() {
}
if tt == html.TextToken && wantText {
token := tokenizer.Token()
regionCertMap[region] = token.String()
regionCertMap[region] = strings.ReplaceAll(token.String(), "\t", "")
wantText = false
}
}
Expand Down
4 changes: 2 additions & 2 deletions regioncert_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 22fd969

Please sign in to comment.