🐛 Fix deadlock when an about: URL can't be loaded (#277)

This commit is contained in:
mooff 2021-12-08 22:57:28 +00:00 committed by GitHub
parent 18062d6a01
commit b7f916f1f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -540,13 +540,10 @@ func Reload() {
func URL(u string) { func URL(u string) {
t := tabs[curTab] t := tabs[curTab]
if strings.HasPrefix(u, "about:") { if strings.HasPrefix(u, "about:") {
if final, ok := handleAbout(t, u); ok { go goURL(t, u)
t.addToHistory(final) } else {
} go goURL(t, fixUserURL(u))
return
} }
go goURL(t, fixUserURL(u))
} }
func RenderFromString(str string) { func RenderFromString(str string) {