rename MediaOverviewActivity to ProfileActivity

This commit is contained in:
B. Petersen 2019-05-17 16:04:58 +02:00
parent a712d0e268
commit d80e930e19
No known key found for this signature in database
GPG key ID: 3B88E92DEA8E9AFC
4 changed files with 7 additions and 7 deletions

View file

@ -539,8 +539,8 @@ public class ConversationActivity extends PassphraseRequiredActionBarActivity
private void handleProfile() {
if(chatId != DcChat.DC_CHAT_ID_DEADDROP) {
Intent intent = new Intent(this, MediaOverviewActivity.class);
intent.putExtra(MediaOverviewActivity.ADDRESS_EXTRA, recipient.getAddress());
Intent intent = new Intent(this, ProfileActivity.class);
intent.putExtra(ProfileActivity.ADDRESS_EXTRA, recipient.getAddress());
startActivity(intent);
}
}