fix(setupcheck): Fix mimetype server version check in backport

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-08-21 10:22:13 +02:00
parent 71c4f05cd6
commit 9a7c916752
No known key found for this signature in database
GPG key ID: 74434EFE0D2E2205

View file

@ -394,7 +394,7 @@ class RepairMimeTypes implements IRepairStep {
$out->info('Fixed eml and msg mime type');
}
if (version_compare($mimeTypeVersion, '30.0.0.0', '<') && $this->introduceExcalidrawType()) {
if (version_compare($mimeTypeVersion, '28.0.9.0', '<') && $this->introduceExcalidrawType()) {
$out->info('Fixed Excalidraw mime type');
}