[skip ci] fix typo

This commit is contained in:
Xwite
2023-03-25 14:48:43 +08:00
committed by GitHub
parent da0fec69f2
commit 16c05455d9
@@ -197,17 +197,17 @@ interface JsExtensions : JsEncodeUtils {
*/ */
fun cacheFile(urlStr: String, saveTime: Int): String { fun cacheFile(urlStr: String, saveTime: Int): String {
val key = md5Encode16(urlStr) val key = md5Encode16(urlStr)
val cahcePath = CacheManager.get(key) val cachePath = CacheManager.get(key)
return if ( return if (
cahcePath.isNullOrBlank() || cachePath.isNullOrBlank() ||
!getFile(cahcePath).exists() !getFile(cachePath).exists()
) { ) {
val path = downloadFile(urlStr) val path = downloadFile(urlStr)
log("首次下载 $urlStr >> $path") log("首次下载 $urlStr >> $path")
CacheManager.put(key, path, saveTime) CacheManager.put(key, path, saveTime)
readTxtFile(path) readTxtFile(path)
} else { } else {
readTxtFile(cahcePath) readTxtFile(cachePath)
} }
} }