mirror of
https://github.com/silverstripe/silverstripe-textextraction
synced 2024-10-22 09:06:00 +00:00
fixed the version comparison using version_compare() instead of plain float
This commit is contained in:
parent
545e711f16
commit
196007314a
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user