Remove old deleted folders from storage service.

This commit is contained in:
Michelle Tang
2025-04-09 14:10:36 -04:00
parent 94d5fe3e43
commit 6006c047d8
5 changed files with 50 additions and 5 deletions

View File

@@ -10,7 +10,6 @@ import androidx.constraintlayout.widget.ConstraintLayout
import androidx.constraintlayout.widget.Guideline
import androidx.core.content.withStyledAttributes
import androidx.core.graphics.Insets
import androidx.core.view.OnApplyWindowInsetsListener
import androidx.core.view.ViewCompat
import androidx.core.view.WindowInsetsAnimationCompat
import androidx.core.view.WindowInsetsCompat

View File

@@ -285,6 +285,12 @@ private fun StorageRecordRow(record: SignalStorageRecord) {
ManifestItemRow("ID", Hex.toStringCondensed(record.id.raw))
}
}
record.proto.chatFolder != null -> {
Column {
Text("Chat Folder", fontWeight = FontWeight.Bold)
ManifestItemRow("ID", Hex.toStringCondensed(record.id.raw))
}
}
else -> {
Column {
Text("Unknown!")