Skip to content

Commit facce47

Browse files
authored
UWP: Fix uwptools that does not uninstall package (flutter#27694)
1 parent 7429ad7 commit facce47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shell/platform/windows/uwptool_utils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ bool ApplicationStore::Install(
9696
bool ApplicationStore::Uninstall(const std::wstring_view package_family) {
9797
bool success = true;
9898
for (const Application& app : GetApps(package_family)) {
99-
if (Uninstall(app.GetPackageFullName())) {
99+
if (UninstallPackage(app.GetPackageFullName())) {
100100
std::wcerr << L"Uninstalled application " << app.GetPackageFullName()
101101
<< std::endl;
102102
} else {

0 commit comments

Comments
 (0)