File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ export default {
7474
7575 const media = response . media [ 0 ] ;
7676
77- `Media ID “${ media . ID } ) ” has been successfully uploaded` ;
78- $ . export ( "$summary" , `Media ID “${ media . ID } ) ” has been successfully uploaded` +
77+ `Media ID “${ media . ID } ” has been successfully uploaded` ;
78+ $ . export ( "$summary" , `Media ID “${ media . ID } ” has been successfully uploaded` +
7979 "\n- " + warnings . join ( "\n- " ) ) ;
8080
8181 console . log ( response ) ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export default {
7171
7272 await this . db . set ( "lastCommentId" , null ) ; //reset
7373
74- const response = await this . getWordpressComments ( this . wordpress . _mock$ ) ;
74+ const response = await this . getWordpressComments ( this . wordpress . _mock$ ( ) ) ;
7575
7676 const comments = response . comments || [ ] ;
7777
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export default {
5151
5252 await this . db . set ( "lastFollowerId" , null ) ; //reset
5353
54- const response = await this . getWordpressFollowers ( this . wordpress . _mock$ ) ;
54+ const response = await this . getWordpressFollowers ( this . wordpress . _mock$ ( ) ) ;
5555
5656 const followers = response . subscribers || [ ] ;
5757
@@ -82,7 +82,7 @@ export default {
8282
8383 const lastFollowerId = Number ( await db . get ( "lastFollowerId" ) ) ;
8484
85- if ( ! lastFollowerId ) await wordpress . initialize ( followers , db , "lastPostId " ) ;
85+ if ( ! lastFollowerId ) await wordpress . initialize ( followers , db , "lastFollowerId " ) ;
8686
8787 let maxFollowerIdTracker = lastFollowerId ;
8888 const newFollowers = [ ] ;
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export default {
8282
8383 await this . db . set ( "lastPostId" , null ) ; // reset
8484
85- const response = await this . getWordpressPosts ( this . wordpress . _mock$ ) ;
85+ const response = await this . getWordpressPosts ( this . wordpress . _mock$ ( ) ) ;
8686
8787 const posts = ( type === "attachment" )
8888 ? ( response . media || [ ] )
You can’t perform that action at this time.
0 commit comments