Fix csv import on android

pull/1/head
Made Baruna 2021-11-02 02:17:46 +07:00
parent 2efa7f4f02
commit 712d71cac3
No known key found for this signature in database
GPG Key ID: 5AA5DA16AA5DCEAD
1 changed files with 9 additions and 5 deletions

View File

@ -529,10 +529,10 @@
}
const readFunc = {
'default': readPaimonExcel,
'takagg': readGachaExportExcel,
'wishtally': readWishTallyExcel
}
default: readPaimonExcel,
takagg: readGachaExportExcel,
wishtally: readWishTallyExcel,
};
try {
readFunc[selectedType](workbook);
@ -550,7 +550,11 @@
file.type === 'application/wps-office.xlsx'
) {
readExcel(file);
} else if (file.type === 'text/csv' || file.type === 'application/vnd.ms-excel') {
} else if (
file.type === 'text/csv' ||
file.type === 'application/vnd.ms-excel' ||
file.type === 'text/comma-separated-values'
) {
readCSV(file);
} else {
pushToast($t('wish.excel.errorInvalidFile'), 'error');