From 04112679b5c87560a0e2854c978791a8acea38d3 Mon Sep 17 00:00:00 2001 From: leha-bot Date: Mon, 17 Sep 2018 01:00:33 +0300 Subject: [PATCH] Rudimentary support for Live Locations Cherry picked from upstream commit https://github.com/telegramdesktop/tdesktop/commit/6ca105a29029dd36363b356390017088d7844281 Related to #114 --- Telegram/SourceFiles/history/history.cpp | 7 +++++++ Telegram/SourceFiles/history/history_message.cpp | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/Telegram/SourceFiles/history/history.cpp b/Telegram/SourceFiles/history/history.cpp index 0c722cf1f..8db28ab46 100644 --- a/Telegram/SourceFiles/history/history.cpp +++ b/Telegram/SourceFiles/history/history.cpp @@ -906,6 +906,13 @@ HistoryItem *History::createItem(const MTPMessage &msg, bool applyServiceAction, default: badMedia = MediaCheckResult::Unsupported; break; } break; + case mtpc_messageMediaGeoLive: + switch (m.vmedia.c_messageMediaGeoLive().vgeo.type()) { + case mtpc_geoPoint: break; + case mtpc_geoPointEmpty: badMedia = MediaCheckResult::Empty; break; + default: badMedia = MediaCheckResult::Unsupported; break; + } + break; case mtpc_messageMediaPhoto: { auto &photo = m.vmedia.c_messageMediaPhoto(); if (photo.has_ttl_seconds()) { diff --git a/Telegram/SourceFiles/history/history_message.cpp b/Telegram/SourceFiles/history/history_message.cpp index 48e6c1ea6..6ba65c27b 100644 --- a/Telegram/SourceFiles/history/history_message.cpp +++ b/Telegram/SourceFiles/history/history_message.cpp @@ -983,6 +983,12 @@ void HistoryMessage::initMedia(const MTPMessageMedia *media) { _media = std::make_unique(this, LocationCoords(point.c_geoPoint())); } } break; + case mtpc_messageMediaGeoLive: { + auto &point = media->c_messageMediaGeoLive().vgeo; + if (point.type() == mtpc_geoPoint) { + _media = std::make_unique(this, LocationCoords(point.c_geoPoint())); + } + } break; case mtpc_messageMediaVenue: { auto &d = media->c_messageMediaVenue(); if (d.vgeo.type() == mtpc_geoPoint) {