Merge pull request #33 from alwex/master

fixed the version comparison for tika server text extractor
This commit is contained in:
Damian Mooyman 2016-10-19 16:10:05 +13:00 committed by GitHub
commit 1b89000fcd

View File

@ -72,7 +72,7 @@ class TikaServerTextExtractor extends FileTextExtractor
{
return $this->getServerEndpoint() &&
$this->getClient()->isAvailable() &&
$this->getVersion() >= 1.7;
version_compare($this->getVersion(), '1.7.0') >= 0;
}
public function supportsExtension($extension)