[RAPPS] Fix command line handling

This commit is contained in:
Mark Jansen 2018-06-05 22:08:18 +02:00
parent 4f8dc9c266
commit f133d01f20
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
3 changed files with 7 additions and 7 deletions

View file

@ -402,7 +402,7 @@ CAvailableApplicationInfo* CAvailableApps::FindInfo(const ATL::CStringW& szAppNa
while (CurrentListPosition != NULL)
{
info = m_InfoList.GetNext(CurrentListPosition);
if (info->m_szName == szAppName)
if (info->m_szName.CompareNoCase(szAppName) == 0)
{
return info;
}