[skip ci] fix typo
This commit is contained in:
@@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user