forked from tangled.org/core
Monorepo for Tangled

appview/middleware: fix fmt.Sprintf for meta html

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.sh>

anirudh.fi 4202ffcc 85face2f

verified
Changed files
+2 -2
appview
middleware
+2 -2
appview/middleware/middleware.go
··· 338 338 html := fmt.Sprintf( 339 339 `<meta name="go-import" content="tangled.sh/%s git https://tangled.sh/%s"/> 340 340 <meta name="go-import" content="tangled.org/%s git https://tangled.org/%s"/>`, 341 - fullName, 342 - fullName, 341 + fullName, fullName, 342 + fullName, fullName, 343 343 ) 344 344 w.Header().Set("Content-Type", "text/html") 345 345 w.Write([]byte(html))