output: Add some sane defaults for output format
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 08:43:48 +0000 (10:43 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Apr 2017 08:43:48 +0000 (10:43 +0200)
Fixes #3290

output/outputFormat.go

index 4a95c1c70ab878bf4745aa1b0941a64dbf5b72b1..ed34264117e25997bdc3fcf3c8782a6ea8c8be07 100644 (file)
@@ -241,6 +241,14 @@ func DecodeFormats(mediaTypes media.Types, maps ...map[string]interface{}) (Form
                                        return f, err
                                }
 
+                               // We need values for these
+                               if newOutFormat.BaseName == "" {
+                                       newOutFormat.BaseName = "index"
+                               }
+                               if newOutFormat.Rel == "" {
+                                       newOutFormat.Rel = "alternate"
+                               }
+
                                f = append(f, newOutFormat)
                        }
                }