mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
[skip ci] 详细dd异常信息
This commit is contained in:
@@ -93,12 +93,12 @@ object UrlUtil {
|
||||
}
|
||||
|
||||
/* 获取合法的文件后缀 */
|
||||
fun getSuffix(url: String, default: String? = null): String {
|
||||
val suffix = url.substringAfterLast(".").substringBeforeLast(",")
|
||||
fun getSuffix(str: String, default: String? = null): String {
|
||||
val suffix = str.substringAfterLast(".").substringBeforeLast(",")
|
||||
//检查截取的后缀字符是否合法 [a-zA-Z0-9]
|
||||
val fileSuffixRegex = Regex("^[a-z\\d]+$", RegexOption.IGNORE_CASE)
|
||||
return if (suffix.length > 5 || !suffix.matches(fileSuffixRegex)) {
|
||||
default ?: throw IllegalArgumentException("Cannot find illegal suffix")
|
||||
default ?: throw IllegalArgumentException("Cannot find illegal suffix:\n target: $str\nsuffix: $suffix")
|
||||
} else {
|
||||
suffix
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user