From d7175385758bf0e4a069e11b183e3b37d021f539 Mon Sep 17 00:00:00 2001 From: offhub <6871698+offhub@users.noreply.github.com> Date: Fri, 4 Oct 2024 19:13:48 +0300 Subject: [PATCH] Update UpdUtil.cpp Corrects the typo in the uninstallKey name. [skip ci] --- SandboxieTools/UpdUtil/UpdUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SandboxieTools/UpdUtil/UpdUtil.cpp b/SandboxieTools/UpdUtil/UpdUtil.cpp index a113198526..0ac291c118 100644 --- a/SandboxieTools/UpdUtil/UpdUtil.cpp +++ b/SandboxieTools/UpdUtil/UpdUtil.cpp @@ -822,7 +822,7 @@ std::shared_ptr ReadAddon(const JSONObject& addon, const std::wstring& c pAddon->InstallPath = GetSpecificEntryValue(addon, L"installPath", core_arch, agent_arch, framework); pAddon->Installer = GetSpecificEntryValue(addon, L"installer", core_arch, agent_arch, framework); - pAddon->UninstallKey = GetSpecificEntryValue(addon, L"uninstallPey", core_arch, agent_arch, framework); + pAddon->UninstallKey = GetSpecificEntryValue(addon, L"uninstallKey", core_arch, agent_arch, framework); for (auto I = addon.begin(); I != addon.end(); ++I) { if (I->first.find(L'-') != std::wstring::npos) @@ -1804,4 +1804,4 @@ bool GetDriverInfo(DWORD InfoClass, void* pBuffer, size_t Size) return false; } return true; -} \ No newline at end of file +}