mirror of https://github.com/procxx/kepka.git
Rudimentary support for Live Locations
Cherry picked from upstream commit 6ca105a290
Related to #114
This commit is contained in:
parent
2aaf08bd71
commit
04112679b5
|
@ -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()) {
|
||||
|
|
|
@ -983,6 +983,12 @@ void HistoryMessage::initMedia(const MTPMessageMedia *media) {
|
|||
_media = std::make_unique<HistoryLocation>(this, LocationCoords(point.c_geoPoint()));
|
||||
}
|
||||
} break;
|
||||
case mtpc_messageMediaGeoLive: {
|
||||
auto &point = media->c_messageMediaGeoLive().vgeo;
|
||||
if (point.type() == mtpc_geoPoint) {
|
||||
_media = std::make_unique<HistoryLocation>(this, LocationCoords(point.c_geoPoint()));
|
||||
}
|
||||
} break;
|
||||
case mtpc_messageMediaVenue: {
|
||||
auto &d = media->c_messageMediaVenue();
|
||||
if (d.vgeo.type() == mtpc_geoPoint) {
|
||||
|
|
Loading…
Reference in New Issue