Send sync message when unpinning.

This commit is contained in:
Michelle Tang
2025-12-09 17:10:08 -05:00
parent 413bdb7b38
commit 673cff8eed
3 changed files with 18 additions and 2 deletions

View File

@@ -406,7 +406,7 @@ class Recipient(
private val resolved: Recipient
get() = if (isResolving) live().resolve() else this
/** Convenience method to get a non-null [serviceId] hen you know it is there. */
/** Convenience method to get a non-null [serviceId] when you know it is there. */
fun requireServiceId(): ServiceId {
return resolved.aciValue ?: resolved.pniValue ?: throw MissingServiceIdError(id)
}