Add call disposition syncing.

This commit is contained in:
Cody Henthorne
2022-12-21 23:56:28 -05:00
committed by Greyson Parrelli
parent d471647e12
commit 06b414f4ef
23 changed files with 788 additions and 76 deletions

View File

@@ -137,7 +137,8 @@ object FakeMessageRecords {
storyType: StoryType = StoryType.NONE,
parentStoryId: ParentStoryId? = null,
giftBadge: GiftBadge? = null,
payment: Payment? = null
payment: Payment? = null,
call: CallTable.Call? = null
): MediaMmsMessageRecord {
return MediaMmsMessageRecord(
id,
@@ -173,7 +174,8 @@ object FakeMessageRecords {
storyType,
parentStoryId,
giftBadge,
payment
payment,
call
)
}
}