diff --git a/src/core/package/application_description.cpp b/src/core/package/application_description.cpp index 83fa08e..d44061f 100644 --- a/src/core/package/application_description.cpp +++ b/src/core/package/application_description.cpp @@ -120,8 +120,7 @@ bool ApplicationDescription::LoadJson(pbnjson::JValue& jdesc, const AppTypeByDir else if ("native" == app_type) app_type_ = (privileged_jail) ? AppType::Native_Mvpd : AppType::Native; else if ("native_builtin" == app_type) app_type_ = AppType::Native_Builtin; else if ("native_appshell" == app_type) app_type_ = AppType::Native_AppShell; - else if ("qml" == app_type && - (AppTypeByDir::System_BuiltIn == type_by_dir || AppTypeByDir::System_Updatable == type_by_dir)) { + else if ("qml" == app_type) { if (SettingsImpl::instance().use_qml_booster_) app_type_ = AppType::Qml; else app_type_ = AppType::Native_Qml; }