소스 검색

fixup! Store federation properties in signaling settings

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez 11 달 전
부모
커밋
c7af117f4e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/src/main/java/com/nextcloud/talk/models/json/signaling/settings/FederationHelloAuthParams.kt

+ 1 - 1
app/src/main/java/com/nextcloud/talk/models/json/signaling/settings/FederationHelloAuthParams.kt

@@ -17,7 +17,7 @@ import kotlinx.serialization.Serializable
 @Serializable
 data class FederationHelloAuthParams(
     @JsonField(name = ["token"])
-    var token: String? = null,
+    var token: String? = null
 ) : Parcelable {
     // This constructor is added to work with the 'com.bluelinelabs.logansquare.annotation.JsonObject'
     constructor() : this(null)