diff options
author | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-08 09:37:39 -0400 |
---|---|---|
committer | Jeffrey Armstrong <jeff@approximatrix.com> | 2021-04-08 09:37:39 -0400 |
commit | def9f944e774a6b529916a8d79c9511b56065392 (patch) | |
tree | 9ef3c6279fd85ebe178c454922c0170284837967 /captain | |
parent | eaf8cf88305640cdaf274504c1cead5e88bf09d4 (diff) | |
download | levitating-def9f944e774a6b529916a8d79c9511b56065392.tar.gz levitating-def9f944e774a6b529916a8d79c9511b56065392.zip |
Fixed favicon path calculation
Diffstat (limited to 'captain')
-rw-r--r-- | captain/special.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/captain/special.f90 b/captain/special.f90 index f1c5e94..43a4a6a 100644 --- a/captain/special.f90 +++ b/captain/special.f90 @@ -27,7 +27,7 @@ contains call combine_paths(static_dir, filename, res) else if(trim(category) == "favicon.txt") then allocate(character(len=(len_trim(static_dir)+len_trim(filename)+1)) :: res) - call combine_paths(static_dir, filename, res) + call combine_paths(static_dir, "favicon.txt", res) else if(trim(category) == "instructions") then allocate(character(len=(len_trim(instructions_dir)+len_trim(filename)+1)) :: res) call combine_paths(instructions_dir, filename, res) |