File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
src/AppInstallerRepositoryCore Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -224,15 +224,11 @@ namespace AppInstaller::Repository
224224 auto & index = m_implementation->Source ->GetIndex ();
225225
226226 // Strip ARP version information from the manifest if it is present
227- auto arpVersionRange = manifest.GetArpVersionRange ();
228- if (!arpVersionRange.IsEmpty ())
227+ for (auto & arpRangeRemovedInstaller : manifest.Installers )
229228 {
230- for (auto & arpRangeRemovedInstaller : manifest. Installers )
229+ for (auto & arpRangeRemovedEntry : arpRangeRemovedInstaller. AppsAndFeaturesEntries )
231230 {
232- for (auto & arpRangeRemovedEntry : arpRangeRemovedInstaller.AppsAndFeaturesEntries )
233- {
234- arpRangeRemovedEntry.DisplayVersion .clear ();
235- }
231+ arpRangeRemovedEntry.DisplayVersion .clear ();
236232 }
237233 }
238234
You can’t perform that action at this time.
0 commit comments