Skip to content

Commit

Permalink
feat(beta): check for updates every 3 hours
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmk3 committed Nov 15, 2024
1 parent 1b33d5a commit 79b5204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/dev/beta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { getRelativeDate } from '../shared/datetime'
const localize = nls.loadMessageBundle()
const logger = getLogger('dev/beta')

const downloadIntervalMs = 1000 * 60 * 60 * 24 // A day in milliseconds
const downloadIntervalMs = 1000 * 60 * 60 * 3 // 3 hours (8 times/day).

interface BetaToolkit {
readonly needUpdate: boolean
Expand Down

0 comments on commit 79b5204

Please sign in to comment.