Commit 1a062c52 by bergquist

fix(notifications): handle none configured image uploader

ref #6152
parent 88ec307f
......@@ -62,7 +62,10 @@ func (n *RootNotifier) sendNotifications(notifiers []Notifier, context *EvalCont
}
func (n *RootNotifier) uploadImage(context *EvalContext) (err error) {
uploader, _ := imguploader.NewImageUploader()
uploader, err := imguploader.NewImageUploader()
if err != nil {
return err
}
renderOpts := &renderer.RenderOpts{
Width: "800",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment