[iOS] Fixed crash when deleting bookmark from edit view.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2022-03-20 15:06:45 +03:00
parent 2fe272a2e6
commit e1b8aef1d4
4 changed files with 12 additions and 6 deletions

View file

@ -38,6 +38,7 @@ NS_SWIFT_NAME(FrameworkHelper)
+ (void)showBookmark:(MWMMarkID)bookmarkId;
+ (void)showTrack:(MWMTrackID)trackId;
+ (void)updatePlacePageData;
+ (void)updateAfterDeleteBookmark;
@end

View file

@ -164,4 +164,12 @@
GetFramework().UpdatePlacePageInfoForCurrentSelection();
}
+ (void)updateAfterDeleteBookmark {
auto & frm = GetFramework();
auto buildInfo = frm.GetCurrentPlacePageInfo().GetBuildInfo();
buildInfo.m_match = place_page::BuildInfo::Match::FeatureOnly;
buildInfo.m_userMarkId = kml::kInvalidMarkId;
buildInfo.m_source = place_page::BuildInfo::Source::Other;
frm.UpdatePlacePageInfoForCurrentSelection(buildInfo);
}
@end

View file

@ -197,7 +197,7 @@ extension EditBookmarkViewController: MWMButtonCellDelegate {
func cellDidPressButton(_ cell: UITableViewCell) {
BookmarksManager.shared().deleteBookmark(bookmarkId)
if let placePageData = placePageData {
FrameworkHelper.updatePlacePageData()
FrameworkHelper.updateAfterDeleteBookmark()
placePageData.updateBookmarkStatus()
}
goBack()

View file

@ -187,11 +187,8 @@ using namespace storage;
auto &f = GetFramework();
f.GetBookmarkManager().GetEditSession().DeleteBookmark(data.bookmarkData.bookmarkId);
auto buildInfo = f.GetCurrentPlacePageInfo().GetBuildInfo();
buildInfo.m_match = place_page::BuildInfo::Match::FeatureOnly;
buildInfo.m_userMarkId = kml::kInvalidMarkId;
buildInfo.m_source = place_page::BuildInfo::Source::Other;
f.UpdatePlacePageInfoForCurrentSelection(buildInfo);
[MWMFrameworkHelper updateAfterDeleteBookmark];
[data updateBookmarkStatus];
}