From f68f7d83390a5651e70b3668c2d1384873d349b1 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 13 May 2014 19:55:56 +0300 Subject: [PATCH] Add target mime when checking FFS aviability --- lib/converter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/converter.php b/lib/converter.php index 8bb2f346..b3bc7ca9 100644 --- a/lib/converter.php +++ b/lib/converter.php @@ -30,7 +30,7 @@ class Converter { public static function checkConnection(){ $expected = file_get_contents(__DIR__ . '/response.odt'); - $converted = self::convertExternal(''); + $converted = self::convertExternal('', 'application/vnd.oasis.opendocument.text'); return $converted === $expected; }