Add target mime when checking FFS aviability

This commit is contained in:
Victor Dubiniuk 2014-05-13 19:55:56 +03:00
parent 448bbb526a
commit f68f7d8339

View File

@ -30,7 +30,7 @@ class Converter {
public static function checkConnection(){ public static function checkConnection(){
$expected = file_get_contents(__DIR__ . '/response.odt'); $expected = file_get_contents(__DIR__ . '/response.odt');
$converted = self::convertExternal(''); $converted = self::convertExternal('', 'application/vnd.oasis.opendocument.text');
return $converted === $expected; return $converted === $expected;
} }