Skip to content

Commit

Permalink
Merge pull request #13 from OrigenStudio/develop
Browse files Browse the repository at this point in the history
v0.0.5
  • Loading branch information
ochicf committed Jun 27, 2018
2 parents b7b5459 + 2e35135 commit 2938abc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/client/interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function serializeFormData(obj, formDataObj = {}, namespace) {
const formKey = namespace ? `${namespace}[${i}]` : `[${i}]`;
serializeValue(obj[i], formKey);
}
} else {
} else if (obj instanceof Object) {
Object.entries(obj).forEach(([property, value]) => {
let formKey;
if (namespace) {
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: 'origenstudio:vulcan-files',
version: '0.0.4',
version: '0.0.5',
summary: 'Provides Vulcan with the capability of uploading files to server using Meteor-Files',
git: 'https://github.com/OrigenStudio/vulcan-files',
documentation: 'README.md'
Expand Down

0 comments on commit 2938abc

Please sign in to comment.