fix: don't check against nullptr
This commit is contained in:
parent
374d5ae5a1
commit
05b12602d4
|
@ -95,7 +95,7 @@ static std::string get_from_desktop_app_info(const std::string &app_id)
|
|||
if (!app_info)
|
||||
app_info = Gio::DesktopAppInfo::create_from_filename(prefix + folder + app_id + suffix);
|
||||
|
||||
if (app_info && app_info->get_icon() != nullptr)
|
||||
if (app_info && app_info->get_icon())
|
||||
return app_info->get_icon()->to_string();
|
||||
|
||||
return "";
|
||||
|
|
Loading…
Reference in New Issue