mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-22 16:07:30 +00:00
Fix reference to "forward" prefix
Code was erroneously referencing the string ID, rather than the contents of the string (sorry!).
This commit is contained in:
parent
d8cd09d46b
commit
e8ffce53fe
@ -436,7 +436,7 @@ public class ConversationActivity extends SherlockFragmentActivity
|
|||||||
registerForContextMenu(sendButton);
|
registerForContextMenu(sendButton);
|
||||||
|
|
||||||
if (getIntent().getStringExtra("forwarded_message") != null)
|
if (getIntent().getStringExtra("forwarded_message") != null)
|
||||||
composeText.setText(R.string.ConversationActivity_forward_message_prefix+": " + getIntent().getStringExtra("forwarded_message"));
|
composeText.setText(getString(R.string.ConversationActivity_forward_message_prefix)+": " + getIntent().getStringExtra("forwarded_message"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void initializeRecipientsInput() {
|
private void initializeRecipientsInput() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user