Bläddra i källkod

:bug: The hyperlink in the marketplace package README fails to jump to the browser to open Fix https://github.com/siyuan-note/siyuan/issues/8452

Daniel 2 år sedan
förälder
incheckning
82fa9f58b2
1 ändrade filer med 1 tillägg och 2 borttagningar
  1. 1 2
      kernel/bazaar/package.go

+ 1 - 2
kernel/bazaar/package.go

@@ -524,8 +524,7 @@ func renderREADME(repoURL string, mdData []byte) (ret string, err error) {
 	}
 
 	doc.Find("a").Each(func(i int, selection *goquery.Selection) {
-		href, ok := selection.Attr("href")
-		if ok {
+		if href, ok := selection.Attr("href"); ok {
 			if util.IsRelativePath(href) {
 				selection.SetAttr("href", linkBase+href)
 			}