Add 'spqr' capability to uploaded AppCapabilities.

This commit is contained in:
gram-signal
2025-08-21 06:29:56 -07:00
committed by Jeffrey Starke
parent 38bb15ed44
commit e917d39a8e
2 changed files with 4 additions and 2 deletions

View File

@@ -56,6 +56,7 @@ class AccountAttributes @JsonCreator constructor(
data class Capabilities @JsonCreator constructor(
@JsonProperty val storage: Boolean,
@JsonProperty val versionedExpirationTimer: Boolean,
@JsonProperty val attachmentBackfill: Boolean
@JsonProperty val attachmentBackfill: Boolean,
@JsonProperty val spqr: Boolean
)
}