diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2017-11-03 09:48:54 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2017-11-03 09:48:54 +0100 |
commit | 923647f2731ad57435fa41e21401fc2ce6c0a74f (patch) | |
tree | c695a84b3227849d61143f1754cf7d088758f67d /src | |
parent | 9fbf88661140cade527abfbf0d02c643504c579e (diff) | |
download | comatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.tar.gz comatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.tar.bz2 comatose-923647f2731ad57435fa41e21401fc2ce6c0a74f.zip |
Switch DOI links to HTTPS
Diffstat (limited to 'src')
-rw-r--r-- | src/Render.hs | 2 |
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 () |