Match more text mimetypes
This commit is contained in:
parent
294e8d8be2
commit
07aaad2cd8
|
@ -77,7 +77,7 @@ func fileDisplayHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
|||
} else if metadata.Mimetype == "application/pdf" {
|
||||
tpl = Templates["display/pdf.html"]
|
||||
|
||||
} else if metadata.Mimetype == "text/plain" || supportedBinExtension(extension) {
|
||||
} else if metadata.Mimetype[:5] == "text/" || supportedBinExtension(extension) {
|
||||
if metadata.Size < maxDisplayFileSizeBytes {
|
||||
bytes, err := ioutil.ReadFile(filePath)
|
||||
if err == nil {
|
||||
|
|
Loading…
Reference in New Issue