From f976f663348c90d22eaa0752c7f1a8596ee3ef75 Mon Sep 17 00:00:00 2001 From: adbenitez Date: Sat, 20 Jan 2024 19:34:32 -0500 Subject: [PATCH] undo change introduced for debugging --- src/org/thoughtcrime/securesms/ConversationTitleView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/ConversationTitleView.java b/src/org/thoughtcrime/securesms/ConversationTitleView.java index 45fa81e0d..bba62aa89 100644 --- a/src/org/thoughtcrime/securesms/ConversationTitleView.java +++ b/src/org/thoughtcrime/securesms/ConversationTitleView.java @@ -113,7 +113,7 @@ public class ConversationTitleView extends RelativeLayout { isOnline = dcContact.wasSeenRecently(); if (profileView) { subtitleStr = dcContact.getAddr(); - } else if (false && dcContact.isBot()) { + } else if (dcContact.isBot()) { subtitleStr = context.getString(R.string.bot); } else if (isOnline) { subtitleStr = context.getString(R.string.online);