mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-09-01 02:18:02 +00:00
AWS Plugin: Don't error when no files to load
This commit is contained in:
@@ -59,8 +59,8 @@ Command.prototype.subCommands["s3-load"] = function() {
|
||||
bucket = this.params[2],
|
||||
filepaths = this.params.slice(3);
|
||||
// Check parameters
|
||||
if(!region || !bucket || filepaths.length < 1) {
|
||||
throw "Missing parameters";
|
||||
if(!region || !bucket) {
|
||||
self.callback("Missing parameters");
|
||||
}
|
||||
async.eachLimit(
|
||||
filepaths,
|
||||
|
Reference in New Issue
Block a user