Don't crash if landing can't be fetched
This commit is contained in:
@@ -221,7 +221,8 @@ func initAssets(p *types.Playground) {
|
|||||||
lpath := path.Join(p.AssetsDir, "landing.html")
|
lpath := path.Join(p.AssetsDir, "landing.html")
|
||||||
landing, err := Asset(lpath)
|
landing, err := Asset(lpath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("Error loading %v: %v", lpath, err)
|
log.Printf("Could not load %v: %v", lpath, err)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var b bytes.Buffer
|
var b bytes.Buffer
|
||||||
|
|||||||
Reference in New Issue
Block a user