Skip to content

Commit

Permalink
fix(setupcheck): Fix mimetype server version check in backport
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 21, 2024
1 parent 71c4f05 commit 9a7c916
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 9a7c916

Please sign in to comment.