Add full SVG support

This commit is contained in:
bxdxnn
2026-06-14 10:06:17 +00:00
parent 88d419c03f
commit 5b53686c3e
11 changed files with 173 additions and 6 deletions
@@ -22,3 +22,6 @@ sealed class ClientException(message: String, val details: String?, cause: Throw
fun ClientException.isNetworkError(): Boolean {
return this is ClientException.Generic && message?.contains("error sending request for url", ignoreCase = true) == true
}
fun Throwable.isNetworkError(): Boolean =
(this as? ClientException)?.isNetworkError() == true