Skip to content

Commit 6ccd5fe

Browse files
committed
Fix variable name mismatch: duration -> scanDuration
1 parent c49ae2e commit 6ccd5fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/buddy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ export class Buddy {
100100
updates,
101101
groups,
102102
scannedAt: new Date(),
103-
duration,
103+
duration: scanDuration,
104104
}
105105

106-
this.logger.success(`Scan completed in ${duration}ms. Found ${updates.length} updates.`)
106+
this.logger.success(`Scan completed in ${scanDuration}ms. Found ${updates.length} updates.`)
107107
return result
108108
}
109109
catch (error) {

0 commit comments

Comments
 (0)