mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 15:53:04 -04:00
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:
commit
8c03d844d8
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