Update AddonManager.cpp

This commit is contained in:
DavidXanatos 2023-07-20 18:03:13 +02:00
parent 59de7f4b5c
commit e9d287cc4b
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ CAddonPtr CAddonManager::GetAddon(const QString& Id)
bool CAddonManager::HasAddon(const QString& Id)
{
CAddonPtr pAddon = GetAddon("FileChecker");
CAddonPtr pAddon = GetAddon(Id);
return pAddon && pAddon->Installed;
}