Skip to content

Commit

Permalink
Merge pull request #47377 from nextcloud/followup/46712/fix-version-c…
Browse files Browse the repository at this point in the history
…heck

[stable28] fix(setupcheck): Fix mimetype server version check in backport
  • Loading branch information
nickvergessen committed Aug 21, 2024
2 parents 71c4f05 + 9a7c916 commit 8c03d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Repair/RepairMimeTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public function run(IOutput $out): void {
$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');
}

Expand Down

0 comments on commit 8c03d84

Please sign in to comment.