summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2017-11-03 09:48:54 +0100
committerLars-Dominik Braun <lars@6xq.net>2017-11-03 09:48:54 +0100
commit923647f2731ad57435fa41e21401fc2ce6c0a74f (patch)
treec695a84b3227849d61143f1754cf7d088758f67d
parent9fbf88661140cade527abfbf0d02c643504c579e (diff)
downloadcomatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.tar.gz
comatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.tar.bz2
comatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.zip
Switch DOI links to HTTPS
-rw-r--r--src/Render.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Render.hs b/src/Render.hs
index 1b22270..d74898c 100644
--- a/src/Render.hs
+++ b/src/Render.hs
@@ -27,7 +27,7 @@ maybeToHtml = maybe mempty toHtml
scholarSearch q = "http://scholar.google.com/scholar?q=" ++ escapeURIString isReserved q
resolveDoi :: String -> String
-resolveDoi q = "http://doi.org/" ++ q
+resolveDoi q = "https://doi.org/" ++ q
-- |List of protocol features
protofeatures :: Database -> Protocol -> Html ()