File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -496,14 +496,14 @@ mkRequest opts request =
496
496
expect =
497
497
case request ^. F. reqReturnType of
498
498
Just elmTypeExpr
499
- | isEmptyType opts elmTypeExpr
499
+ | isEmptyType opts $ (elmTypeAlterations opts) elmTypeExpr
500
500
-- let elmConstructor = T.pack (renderElm elmTypeExpr)
501
501
->
502
502
" Http.expectString " <> line <+> indent i " (\\ x -> case x of" <> line <+>
503
503
indent i " Err e -> toMsg (Err e)" <> line <+>
504
504
indent i " Ok _ -> toMsg (Ok ()))"
505
505
Just elmTypeExpr ->
506
- " Http.expectJson toMsg" <+> renderDecoderName elmTypeExpr
506
+ " Http.expectJson toMsg" <+> renderDecoderName ((elmTypeAlterations opts) elmTypeExpr)
507
507
Nothing -> error " mkHttpRequest: no reqReturnType?"
508
508
-- case request ^. F.reqReturnType of
509
509
-- Just elmTypeExpr | isEmptyType opts elmTypeExpr ->
You can’t perform that action at this time.
0 commit comments