File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export class Instagram<PostType> extends EventEmitter {
4343 } ) ;
4444 }
4545 if ( options . silent === undefined ) {
46- options . silent = false ;
46+ options . silent = true ;
4747 }
4848 if ( options . sleepTime === undefined ) {
4949 options . sleepTime = 2 ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function getOptions(args, logger) {
3939 headless : ! args [ "visible" ] ,
4040 logger,
4141 plugins : [ ] ,
42- silent : args [ "silent " ] ,
42+ silent : args [ "quiet " ] ,
4343 sleepTime : args [ "sleep" ] ,
4444 strict : args [ "strict" ] ,
4545 total : args [ "count" ] ,
@@ -342,7 +342,7 @@ async function spawn(args) {
342342 let uploadUrl = args [ "upload" ] ;
343343 if ( uploadUrl && uploadUrl . includes ( "[uuid]" ) ) {
344344 uploadUrl = uploadUrl . replace ( "[uuid]" , uuid ( ) ) ;
345- if ( ! args [ "silent " ] ) {
345+ if ( ! args [ "quiet " ] ) {
346346 process . stdout . write ( uploadUrl + "\n" ) ;
347347 }
348348 }
You can’t perform that action at this time.
0 commit comments