Commit 0c77de79 authored by Loïc Chapron's avatar Loïc Chapron

FIX 'host' not found

parent 49946361
Pipeline #6211 failed with stages
in 1 minute and 40 seconds
...@@ -40,7 +40,9 @@ toDoc la (ISTEX.Document i t a ab d s) = do ...@@ -40,7 +40,9 @@ toDoc la (ISTEX.Document i t a ab d s) = do
, _hd_title = t , _hd_title = t
, _hd_authors = Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (map ISTEX._author_name a) , _hd_authors = Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (map ISTEX._author_name a)
, _hd_institutes = Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (concatMap ISTEX._author_affiliations a) , _hd_institutes = Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (concatMap ISTEX._author_affiliations a)
, _hd_source = Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (ISTEX._source_title s) , _hd_source = case s of
Just n -> Just $ foldl' (\x y -> if x == "" then y else x <> ", " <> y) "" (ISTEX._source_title n)
Nothing -> Nothing
, _hd_abstract = ab , _hd_abstract = ab
, _hd_publication_date = fmap (T.pack . show) utctime , _hd_publication_date = fmap (T.pack . show) utctime
, _hd_publication_year = pub_year , _hd_publication_year = pub_year
......
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