1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:17:45 +00:00

Spreadsheet: Recognize sheets files by mime type, not by file extension

These conditions weren't executed since 933a717f3b and always showed
a file import/export wizard.
This commit is contained in:
Karol Kosek 2022-05-21 19:36:28 +02:00 committed by Ali Mohammad Pur
parent f47bcddb5b
commit 169498f9db
2 changed files with 2 additions and 2 deletions

View file

@ -292,7 +292,7 @@ Result<void, String> ExportDialog::make_and_run_for(StringView mime, Core::File&
if (mime == "text/csv") {
return export_xsv();
} else if (mime == "text/plain" && file.filename().ends_with(".sheets")) {
} else if (mime == "application/x-sheets+json") {
return export_worksheet();
} else {
auto page = GUI::WizardPage::construct(