Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmasse committed Jul 6, 2021
1 parent 7f2d301 commit df6c973
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sync/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class SyncService extends Service {
}
}

for (const req of config) {
for (const req of config || []) {
req.sandbox ? await this.syncSandbox(req) : await this.sync(req, true)
}
}
Expand Down

0 comments on commit df6c973

Please sign in to comment.