mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Send legacy private messages from headless app.
This commit is contained in:
@@ -73,7 +73,7 @@ constructor(
|
||||
|
||||
val group = messagingManager.getContactGroup(contact)
|
||||
val now = clock.currentTimeMillis()
|
||||
val m = privateMessageFactory.createPrivateMessage(group.id, now, text, emptyList())
|
||||
val m = privateMessageFactory.createLegacyPrivateMessage(group.id, now, text)
|
||||
|
||||
messagingManager.addLocalMessage(m)
|
||||
return ctx.json(m.output(contact.id, text))
|
||||
|
||||
@@ -115,11 +115,10 @@ internal class MessagingControllerImplTest : ControllerTest() {
|
||||
every { messagingManager.getContactGroup(contact) } returns group
|
||||
every { clock.currentTimeMillis() } returns timestamp
|
||||
every {
|
||||
privateMessageFactory.createPrivateMessage(
|
||||
privateMessageFactory.createLegacyPrivateMessage(
|
||||
group.id,
|
||||
timestamp,
|
||||
text,
|
||||
emptyList()
|
||||
text
|
||||
)
|
||||
} returns privateMessage
|
||||
every { messagingManager.addLocalMessage(privateMessage) } just runs
|
||||
|
||||
Reference in New Issue
Block a user