Merge pull request #47377 from nextcloud/followup/46712/fix-version-check

[stable28] fix(setupcheck): Fix mimetype server version check in backport
This commit is contained in:
Joas Schilling 2024-08-21 12:01:21 +02:00 committed by GitHub
commit 8c03d844d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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');
}