Fixed Non-ASCII attachment filename will crash when downloading.

Thanks to xet7 !

Fixes #2759
This commit is contained in:
Lauri Ojansivu 2021-04-29 13:26:49 +03:00
parent 843ff8eaaa
commit c2da477735
277 changed files with 30568 additions and 52 deletions

View file

@ -0,0 +1,23 @@
Package.describe({
name: 'wekan-cfs-reactive-list',
version: '0.0.9',
summary: 'ReactiveList provides a small, fast queue/list built for Power-Queue',
git: 'https://github.com/zcfs/Meteor-reactive-list.git'
});
Package.onUse(function (api) {
api.versionsFrom('1.0');
api.use('deps', ['client', 'server']);
api.export('ReactiveList');
api.addFiles(['reactive-list.js'], ['client', 'server']);
});
Package.onTest(function (api) {
api.use('wekan-cfs-reactive-list');
api.use('test-helpers', 'server');
api.use('tinytest');
api.addFiles('tests.js');
});