This commit is contained in:
gedoor 2021-10-14 17:15:50 +08:00
parent 0e24588776
commit 8b6698ae86

View File

@ -144,7 +144,7 @@ class HttpReadAloudService : BaseReadAloudService(),
downloadAudio()
} catch (e: ConnectException) {
removeSpeakCacheFile(fileName)
toastOnUi("网络错误")
toastOnUi("tts接口网络错误")
} catch (e: IOException) {
val file = getSpeakFileAsMd5(fileName)
if (file.exists()) {
@ -152,8 +152,10 @@ class HttpReadAloudService : BaseReadAloudService(),
}
toastOnUi("tts文件解析错误")
} catch (e: Exception) {
e.printOnDebug()
removeSpeakCacheFile(fileName)
AppLog.put("tts接口错误\n${e.localizedMessage}", e)
toastOnUi("tts接口错误\n${e.localizedMessage}")
e.printOnDebug()
}
}
}