🎨 Improve the marketplace refresh timer https://github.com/siyuan-note/siyuan/issues/14685

This commit is contained in:
Daniel 2025-04-23 10:34:30 +08:00
parent 9c970b1bdc
commit 85934230ac
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 7 additions and 3 deletions

View file

@ -58,3 +58,7 @@ func GetRhyResult(force bool) (map[string]interface{}, error) {
rhyResultCacheTime = now
return cachedRhyResult, nil
}
func RefreshRhyResultJob() {
GetRhyResult(true)
}