Change summary
src/main/java/eu/siacs/conversations/utils/GeoHelper.java | 1 +
1 file changed, 1 insertion(+)
Detailed changes
@@ -54,6 +54,7 @@ public class GeoHelper {
Intent locationPluginIntent = new Intent("eu.siacs.conversations.location.show");
locationPluginIntent.putExtra("latitude",latitude);
locationPluginIntent.putExtra("longitude",longitude);
+ locationPluginIntent.putExtra("jid",conversation.getJid().toString());
if (conversation.getMode() == Conversation.MODE_SINGLE && message.getStatus() == Message.STATUS_RECEIVED) {
locationPluginIntent.putExtra("name",conversation.getName());
}