mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-15 02:18:00 +00:00
(js) Fix download of exported folders under iOS
Whenever possible, we no longer rely on the FileSaver.js library to download zip archives. Instead, we do a simple GET on the resource by changing the window location.
This commit is contained in:
@@ -554,7 +554,7 @@
|
||||
filename: this.name + '.ics'
|
||||
};
|
||||
|
||||
return Calendar.$$resource.download(this.id + '.ics', 'export', null, options);
|
||||
return Calendar.$$resource.open(this.id + '.ics', 'export', null, options);
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user