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:
parent
f47bcddb5b
commit
169498f9db
2 changed files with 2 additions and 2 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue