Fall back to default template on bad editor config

Ref T677
pull/153/head
Matt Baer 5 years ago
parent f6a7dfacb9
commit 603a52dc46
  1. 4
      pad.go

@ -60,6 +60,10 @@ func handleViewPad(app *App, w http.ResponseWriter, r *http.Request) error {
if action == "" && slug == "" {
// Not editing any post; simply render the Pad
if templates[padTmpl] == nil {
log.Info("No template '%s' found. Falling back to default 'pad' template.", padTmpl)
padTmpl = "pad"
}
if err = templates[padTmpl].ExecuteTemplate(w, "pad", appData); err != nil {
log.Error("Unable to execute template: %v", err)
}

Loading…
Cancel
Save