Skip to content

Commit

Permalink
Merge pull request #871 from veliovgroup/dev
Browse files Browse the repository at this point in the history
πŸ“¦ v2.3.3

__Major changes:__

- no

__Changes:__

- πŸ‘¨β€πŸ”§ Fixed #870, thanks to @Gobliins
- 🀝 Compatibility with `[email protected]`
  • Loading branch information
dr-dimitru committed Apr 28, 2023
2 parents b312ef9 + 83e0caa commit 49f3bed
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 33 deletions.
56 changes: 28 additions & 28 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
[email protected]
babel-compiler@7.9.0
babel-compiler@7.10.3
[email protected]
[email protected]
[email protected]
[email protected]
callback-hook@1.4.0
[email protected].1
[email protected].0
[email protected].0
callback-hook@1.5.0
[email protected].2
[email protected].1
[email protected].1
[email protected]
[email protected]
[email protected].1
[email protected].2
[email protected]
[email protected].2
[email protected].6
[email protected]
[email protected]
[email protected]
[email protected].2
[email protected].1
[email protected].10
[email protected].3
[email protected].3
[email protected].11
[email protected]
[email protected]
local-test:ostrio:[email protected].2
[email protected].1
meteor@1.10.1
[email protected].0
[email protected].8
local-test:ostrio:[email protected].3
[email protected].2
meteor@1.11.1
[email protected].2
[email protected].9
[email protected]
[email protected].0
[email protected].0
[email protected].1
[email protected].5
[email protected]
[email protected]
[email protected]
npm-mongo@4.9.0
npm-mongo@4.14.0
[email protected]
ostrio:[email protected]
ostrio:[email protected].2
[email protected].0
[email protected].0
[email protected].3
[email protected].11
ostrio:[email protected].3
[email protected].2
[email protected].1
[email protected].6
[email protected].12
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].1
tracker@1.2.0
[email protected].10
[email protected].1
[email protected].0
[email protected].2
tracker@1.3.1
[email protected].12
[email protected].4
[email protected].1
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022, dr.dimitru (Dmitry A.; Veliov Group, LLC)
Copyright (c) 2023, dr.dimitru (Dmitry A.; Veliov Group, LLC)
All rights reserved.

Redistribution and use in source and binary forms,
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:files',
version: '2.3.2',
version: '2.3.3',
summary: 'Upload files to a server or 3rd party storage: AWS:S3, GridFS, DropBox, and other',
git: 'https://github.com/veliovgroup/Meteor-Files',
documentation: 'README.md'
Expand Down
6 changes: 3 additions & 3 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -1430,11 +1430,11 @@ class FilesCollection extends FilesCollectionCore {
wStream.destroy();
}

fs.remove(opts.path, (removeError) => {
fs.unlink(opts.path, (unlinkError) => {
bound(() => {
callback && callback(error);
if (removeError) {
this._debug(`[FilesCollection] [load] [fetch(${url})] [fs.remove(${opts.path})] removeError:`, removeError);
if (unlinkError) {
this._debug(`[FilesCollection] [load] [fetch(${url})] [fs.unlink(${opts.path})] unlinkError:`, unlinkError);
}
});
});
Expand Down

0 comments on commit 49f3bed

Please sign in to comment.