fix sqlite locking fuckery by replacing it with h2

This commit is contained in:
Aria Moradi
2021-02-04 00:32:01 +03:30
parent 172f83f5b3
commit d766206343
6 changed files with 130 additions and 172 deletions

View File

@@ -50,10 +50,10 @@ class WrappedCookie private constructor(val cookie: Cookie) {
if (other !is WrappedCookie) return false
return other.cookie.name == cookie.name &&
other.cookie.domain == cookie.domain &&
other.cookie.path == cookie.path &&
other.cookie.secure == cookie.secure &&
other.cookie.hostOnly == cookie.hostOnly
other.cookie.domain == cookie.domain &&
other.cookie.path == cookie.path &&
other.cookie.secure == cookie.secure &&
other.cookie.hostOnly == cookie.hostOnly
}
override fun hashCode(): Int {
@@ -69,4 +69,4 @@ class WrappedCookie private constructor(val cookie: Cookie) {
companion object {
fun wrap(cookie: Cookie) = WrappedCookie(cookie)
}
}
}