Fix bugs for chat folders in storage sync.

This commit is contained in:
Michelle Tang
2025-08-18 11:40:10 -04:00
committed by Jeffrey Starke
parent d636ef8ec9
commit 958dde0f6e
3 changed files with 3 additions and 2 deletions

View File

@@ -326,6 +326,7 @@ class ChatFolderTables(context: Context?, databaseHelper: SignalDatabase?) : Dat
ChatFolderTable.SHOW_MUTED to chatFolder.showMutedChats,
ChatFolderTable.SHOW_INDIVIDUAL to chatFolder.showIndividualChats,
ChatFolderTable.SHOW_GROUPS to chatFolder.showGroupChats,
ChatFolderTable.STORAGE_SERVICE_ID to chatFolder.storageServiceId.let { Base64.encodeWithPadding(chatFolder.storageServiceId!!.raw) },
ChatFolderTable.STORAGE_SERVICE_PROTO to storageServiceProto,
ChatFolderTable.DELETED_TIMESTAMP_MS to chatFolder.deletedTimestampMs
)