We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1551801 commit 4b79180Copy full SHA for 4b79180
lib/client/fileUpload.js
@@ -45,7 +45,8 @@ Template.afFileUpload.onCreated(function () {
45
}
46
47
if (!this.collection) {
48
- throw new Meteor.Error(404, `[meteor-autoform-files] No collection found by name "${this.data.atts.collection}"`);
+ throw new Meteor.Error(404, `[meteor-autoform-files] No collection found by name "${this.data.atts.collection}"`,
49
+ `Collection's name is case-sensetive. Please, make sure you're using right collection name.`);
50
51
52
this.uploadTemplate = this.data.atts.uploadTemplate || null;
0 commit comments