]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/MIMEType/Guess.hs
staticDir
[Lucu.git] / Network / HTTP / Lucu / MIMEType / Guess.hs
index 7fe58206b5dcb86cd15538c4906f2f86ed0a09d8..12f19e0684748eb7bccfa229e670fb80f9b91e57 100644 (file)
@@ -25,7 +25,7 @@ type ExtMap = Map String MIMEType
 
 guessTypeByFileName :: ExtMap -> FilePath -> Maybe MIMEType
 guessTypeByFileName extMap fpath
-    = let ext = head $ reverse $ splitBy (== '.') fpath
+    = let ext = last $ splitBy (== '.') fpath
       in
         M.lookup ext extMap >>= return