issue #12 #13 Fixing couldn't install wavve app on ur762h0nd tv model.

This commit is contained in:
paul kim
2025-06-24 22:17:07 +09:00
parent e67612d210
commit d7ef293d55

View File

@@ -802,7 +802,7 @@ HotelTV.LoadAppFull = async function() {
HotelTV.state['hcap_app_preload'] = _hcapPreloadAppInfo.applist;
HotelTV.state['hcap_app_general'] = _hcapGeneralAppInfo.applist;
for (_i = 0; _i < HotelTV.state['hcap_app_preload'].length; _i++) {
if (HotelTV.state['hcap_app_preload'][_i].title == "Netflix") {
if (HotelTV.state['hcap_app_preload'][_i].title.toLowerCase() == "netflix") {
console.log("Found out netflix among of pre hcap app-list.")
_foundNetflix = true;
_NeedToDeleteTimer = true;
@@ -810,17 +810,17 @@ HotelTV.LoadAppFull = async function() {
}
for (_i = 0; _i < HotelTV.state['hcap_app_general'].length; _i++) {
if (HotelTV.state['hcap_app_general'][_i].title == "TVING") {
if (HotelTV.state['hcap_app_general'][_i].title.toLowerCase() == "tving") {
if ( HotelTV.state['hcap_app_general'][_i].valid == false ){
console.warn("Found out TVING but not installed...");
_list_install_appIDs.push(HotelTV.state['hcap_app_general'][_i].appId);
}
} else if (HotelTV.state['hcap_app_general'][_i].title == "Coupang Play") {
} else if (HotelTV.state['hcap_app_general'][_i].title.toLowerCase() == "coupang play") {
if ( HotelTV.state['hcap_app_general'][_i].valid == false ){
console.warn("Found out Coupang Play but not installed...");
_list_install_appIDs.push(HotelTV.state['hcap_app_general'][_i].appId);
}
} else if (HotelTV.state['hcap_app_general'][_i].title == "wavve") {
} else if (HotelTV.state['hcap_app_general'][_i].title.toLowerCase() == "wavve") {
if ( HotelTV.state['hcap_app_general'][_i].valid == false ){
console.warn("Found out wavve but not installed...");
_list_install_appIDs.push(HotelTV.state['hcap_app_general'][_i].appId);