Skip to content

Commit

Permalink
maintainer.name field can also be null
Browse files Browse the repository at this point in the history
fixes #181
  • Loading branch information
garbas committed Sep 7, 2020
1 parent 2a441c9 commit 91da126
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Page/Packages.elm
Expand Up @@ -77,7 +77,7 @@ type alias ResultPackageLicense =


type alias ResultPackageMaintainer =
{ name : String
{ name : Maybe String
, email : String
, github : Maybe String
}
Expand Down Expand Up @@ -342,7 +342,7 @@ viewResultItemDetails channel item =
Nothing ->
"#"
]
[ text <| maintainer.name ++ " <" ++ maintainer.email ++ ">" ]
[ text <| Maybe.withDefault "" maintainer.name ++ " <" ++ maintainer.email ++ ">" ]

asPre value =
pre [] [ text value ]
Expand Down Expand Up @@ -460,7 +460,7 @@ decodeResultPackageLicense =
decodeResultPackageMaintainer : Json.Decode.Decoder ResultPackageMaintainer
decodeResultPackageMaintainer =
Json.Decode.map3 ResultPackageMaintainer
(Json.Decode.field "name" Json.Decode.string)
(Json.Decode.field "name" (Json.Decode.nullable Json.Decode.string))
(Json.Decode.field "email" Json.Decode.string)
(Json.Decode.field "github" (Json.Decode.nullable Json.Decode.string))

Expand Down

0 comments on commit 91da126

Please sign in to comment.