diff --git a/OsmAnd/src/net/osmand/plus/download/ui/LocalIndexesFragment.java b/OsmAnd/src/net/osmand/plus/download/ui/LocalIndexesFragment.java index b7f1900df3..539b22ccde 100644 --- a/OsmAnd/src/net/osmand/plus/download/ui/LocalIndexesFragment.java +++ b/OsmAnd/src/net/osmand/plus/download/ui/LocalIndexesFragment.java @@ -55,6 +55,8 @@ import net.osmand.plus.download.DownloadActivity; import net.osmand.plus.download.DownloadIndexesThread.DownloadEvents; import net.osmand.plus.download.IndexItem; import net.osmand.plus.helpers.FileNameTranslationHelper; +import net.osmand.plus.inapp.InAppHelper; +import net.osmand.plus.resources.IncrementalChangesManager; import net.osmand.util.Algorithms; import java.io.File; @@ -465,6 +467,13 @@ public class LocalIndexesFragment extends OsmandExpandableListFragment implement if (operation == DELETE_OPERATION) { File f = new File(info.getPathToData()); successfull = Algorithms.removeAllFiles(f); + if (InAppHelper.isSubscribedToLiveUpdates()) { + String fileNameWithoutExtension = + Algorithms.getFileNameWithoutExtension(f); + IncrementalChangesManager changesManager = + getMyApplication().getResourceManager().getChangesManager(); + changesManager.deleteUpdates(fileNameWithoutExtension); + } if (successfull) { getMyApplication().getResourceManager().closeFile(info.getFileName()); }