Fix tracking of created_at in SenderKeyDatabase.

This commit is contained in:
Greyson Parrelli
2021-11-06 00:18:42 -04:00
parent f5af964286
commit 100796b3b9
4 changed files with 27 additions and 10 deletions

View File

@@ -28,7 +28,7 @@ public class LogSectionSenderKey implements LogSection {
public @NonNull CharSequence getContent(@NonNull Context context) {
StringBuilder builder = new StringBuilder();
builder.append("--- Sender Keys").append("\n\n");
builder.append("--- Sender Keys Created By This Device").append("\n\n");
try (Cursor cursor = DatabaseFactory.getSenderKeyDatabase(context).getAllCreatedBySelf()) {
builder.append(AsciiArt.tableFor(cursor)).append("\n\n");
}