Fixes lint error with comments

This commit is contained in:
ericdecanini 2022-09-23 09:24:20 -04:00
parent 8c7901177e
commit 65c89638ab
2 changed files with 5 additions and 5 deletions

View file

@ -59,12 +59,12 @@ data class HttpPusher(
val url: String, val url: String,
/** /**
* Whether the pusher should actively create push notifications * Whether the pusher should actively create push notifications.
*/ */
val enabled: Boolean, 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, val deviceId: String,

View file

@ -117,13 +117,13 @@ internal data class JsonPusher(
val append: Boolean? = false, 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") @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") @Json(name = "org.matrix.msc3881.device_id")
val deviceId: String? = null, val deviceId: String? = null,