[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:
parent
540bd70d96
commit
62778dbfbe
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Reference in a new issue