diff options
Diffstat (limited to 'src/Text/Pandoc/Writers/ICML.hs')
-rw-r--r-- | src/Text/Pandoc/Writers/ICML.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/ICML.hs b/src/Text/Pandoc/Writers/ICML.hs index efec17d26..3b7d3c4da 100644 --- a/src/Text/Pandoc/Writers/ICML.hs +++ b/src/Text/Pandoc/Writers/ICML.hs @@ -546,7 +546,7 @@ imageICML opts style attr (src, _) = do report $ CouldNotFetchResource src "" return def Right (img, _) -> do - case imageSize img of + case imageSize opts img of Right size -> return size Left msg -> do report $ CouldNotDetermineImageSize src msg |