[android] Fix crash upon deleting a POI via the Editor

Resolves #10211

Signed-off-by: savsch <119003089+savsch@users.noreply.github.com>
This commit is contained in:
Tanmay Gupta 2025-03-02 20:09:23 +05:30 committed by Konstantin Pastbin
parent 540bd70d96
commit 62778dbfbe

View file

@ -3407,6 +3407,9 @@ bool Framework::ShouldShowProducts() const
if (!m_usageStats.IsLoyalUser())
return false;
if (!HasPlacePageInfo()) // happens after the POI is deleted via the editor
return false;
if (!storage::IsPointCoveredByDownloadedMaps(GetCurrentPlacePageInfo().GetMercator(), m_storage, *m_infoGetter))
return false;