From 2669c5126512ac8721b886ea52144f39f1a52edf Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Fri, 26 Feb 2016 00:05:07 +0100 Subject: [PATCH] Allow sgf files if they're recognized in mime search They are Go game files used on lamatriz.org. Note that my server doesn't actually recognize these files and can identify the mime type, but my browser did for some reason. --- lib/default.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/default.php b/lib/default.php index b945c24e20..c78803da97 100644 --- a/lib/default.php +++ b/lib/default.php @@ -241,6 +241,7 @@ $default = 'application/vnd.oasis.opendocument.text-web' => 'oth', 'application/pdf' => 'pdf', 'application/zip' => 'zip', + 'application/x-go-sgf' => 'sgf', 'application/xml' => 'xml', 'image/png' => 'png', 'image/jpeg' => 'jpg',