show me name instead of name part from own jid in maps
This commit is contained in:
parent
9a9fc4ed5e
commit
3aac32f7aa
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class GeoHelper {
|
|||
locationPluginIntent.putExtra("longitude", geoPoint.getLongitude());
|
||||
if (message.getStatus() != Message.STATUS_RECEIVED) {
|
||||
locationPluginIntent.putExtra("jid", conversation.getAccount().getJid().toString());
|
||||
locationPluginIntent.putExtra("name", conversation.getAccount().getJid().getLocal());
|
||||
locationPluginIntent.putExtra("name", context.getString(R.string.me));
|
||||
} else {
|
||||
Contact contact = message.getContact();
|
||||
if (contact != null) {
|
||||
|
|
Reference in a new issue