aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/db
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2021-01-24 19:10:09 -0800
committerAllan Wang <me@allanwang.ca>2021-01-24 19:10:09 -0800
commit58068ce55e9e203a77c67dfee78fb2658e3bb6aa (patch)
treeaed233a587838d42caccdd771a52a1f4471d8092 /app/src/main/kotlin/com/pitchedapps/frost/db
parentbe88f69e7863b8df2923ab456481e419de29b33b (diff)
downloadfrost-58068ce55e9e203a77c67dfee78fb2658e3bb6aa.tar.gz
frost-58068ce55e9e203a77c67dfee78fb2658e3bb6aa.tar.bz2
frost-58068ce55e9e203a77c67dfee78fb2658e3bb6aa.zip
Create messenger client with cookie checking
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/db')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
index 163d151b..8c2e32a7 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt
@@ -44,7 +44,8 @@ data class CookieEntity(
) : Parcelable {
override fun toString(): String = "CookieEntity(${hashCode()})"
- fun toSensitiveString(): String = "CookieEntity(id=$id, name=$name, cookie=$cookie)"
+ fun toSensitiveString(): String =
+ "CookieEntity(id=$id, name=$name, cookie=$cookie cookieMessenger=$cookieMessenger)"
}
@Dao