Might be, need to do the same as ``` fun check...
# kobalt
c
Might be, need to do the same as
Copy code
fun checkForNewVersion(latestVersionFuture: Future<String>) {
        // Only check once a day, except if autoUpdate is true
        if (Kobalt.versionCheckTimeout > Duration.between(VersionCheckTimestampFile.timestamp, Instant.now())
                && ! settings.autoUpdate) {
            return  // waits `Kobalt.versionCheckTimeout` before the next check
        }