Skip to content

Commit edebd30

Browse files
committed
fix: unreachable statement in updatesubscriber
1 parent fea5bbc commit edebd30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class UpdateSubscriber extends EventEmitter {
4848
this.emit('checking');
4949
try {
5050
await downloadHelper.fetchChecksums();
51-
return await downloadHelper.verifyAllChecksums(downloadPath);
51+
await downloadHelper.verifyAllChecksums(downloadPath);
5252
this.emit('up-to-date');
5353
} catch (ex) {
5454
await this.update();

0 commit comments

Comments
 (0)