1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-10 08:10:52 +00:00
* Fixed: Bug when switching storage providers causing the provider to not change.
* Fixed: Revert changes to file picker while investigating some users being unable to select a file.
This commit is contained in:
SirStendec 2021-03-02 20:18:32 -05:00
parent add9f7a7d5
commit 715a92e298
4 changed files with 11 additions and 6 deletions

View file

@ -91,6 +91,9 @@ export default {
let file;
try {
file = await openFile('application/json,application/zip');
if ( ! file )
return;
} catch(err) {
this.error_desc = this.t('setting.backup-restore.read-error', 'Unable to read file.');
this.error = true;