mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 15:53:04 -04:00
fix(setupcheck): Fix mimetype server version check in backport
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
71c4f05cd6
commit
9a7c916752
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue