mirror of
https://github.com/element-hq/element-android
synced 2024-11-23 09:55:40 +03:00
Fixes lint error with comments
This commit is contained in:
parent
8c7901177e
commit
65c89638ab
2 changed files with 5 additions and 5 deletions
|
@ -59,12 +59,12 @@ data class HttpPusher(
|
|||
val url: String,
|
||||
|
||||
/**
|
||||
* Whether the pusher should actively create push notifications
|
||||
* Whether the pusher should actively create push notifications.
|
||||
*/
|
||||
val enabled: Boolean,
|
||||
|
||||
/**
|
||||
* The device ID of the session that registered the pusher
|
||||
* The device ID of the session that registered the pusher.
|
||||
*/
|
||||
val deviceId: String,
|
||||
|
||||
|
|
|
@ -117,13 +117,13 @@ internal data class JsonPusher(
|
|||
val append: Boolean? = false,
|
||||
|
||||
/**
|
||||
* Whether the pusher should actively create push notifications
|
||||
* Whether the pusher should actively create push notifications.
|
||||
*/
|
||||
@Json(name = "org.matrix.msc3881.enabled")
|
||||
val enabled: Boolean = false,
|
||||
val enabled: Boolean = true,
|
||||
|
||||
/**
|
||||
* The device_id of the session that registered the pusher
|
||||
* The device_id of the session that registered the pusher.
|
||||
*/
|
||||
@Json(name = "org.matrix.msc3881.device_id")
|
||||
val deviceId: String? = null,
|
||||
|
|
Loading…
Reference in a new issue