优化
This commit is contained in:
@@ -358,9 +358,9 @@ open class WebDav(val path: String, val authorization: Authorization) {
|
||||
val exception = document.getElementsByTag("s:exception").firstOrNull()?.text()
|
||||
val message = document.getElementsByTag("s:message").firstOrNull()?.text()
|
||||
if (exception == "ObjectNotFound") {
|
||||
throw ObjectNotFoundException(message ?: "$path doesn't exist")
|
||||
throw ObjectNotFoundException(message ?: "$path doesn't exist. code:${response.code}")
|
||||
}
|
||||
throw WebDavException(message ?: "未知错误")
|
||||
throw WebDavException(message ?: "未知错误 code:${response.code}")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -54,9 +54,9 @@ data class SearchScope(private var scope: String) {
|
||||
}
|
||||
if (list.isEmpty()) {
|
||||
list.add("全部书源")
|
||||
}
|
||||
return list
|
||||
}
|
||||
return list
|
||||
}
|
||||
|
||||
/**
|
||||
* 搜索范围书源
|
||||
|
||||
Reference in New Issue
Block a user