Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(setupcheck): Fix mimetype server version check in backport
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Aug 21, 2024
commit 9a7c91675299950b3717c37fdfa6abcd6534bb61
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