issue #11 Changed URI handling scheme to using absloute url.

This commit is contained in:
Paul Kim
2024-03-11 17:50:22 +09:00
parent 0365efb3c1
commit d0e86fb9fd
2 changed files with 15 additions and 15 deletions

View File

@@ -3041,7 +3041,7 @@ HotelTV.ui_appfull = (function() {
_state.menu.stage.prev = _state.menu.stage.cur; _state.menu.stage.prev = _state.menu.stage.cur;
_state.menu.stage.cur = "mypage_replay_welcome_vod" _state.menu.stage.cur = "mypage_replay_welcome_vod"
HotelTV.hcap.MediaPlay( HotelTV.hcap.MediaPlay(
HotelTV.api.GetBaseUrl() + uri_video, uri_video,
"", "",
"video/mp4", "video/mp4",
1, 1,
@@ -4048,7 +4048,7 @@ HotelTV.ui_appfull = (function() {
let uri_video = $($('.main .ctzgen .bg .owl-carousel .owl-item.active .ctz_mv_ctrl')[0]).attr('video_url'); let uri_video = $($('.main .ctzgen .bg .owl-carousel .owl-item.active .ctz_mv_ctrl')[0]).attr('video_url');
if (uri_video != null) { if (uri_video != null) {
HotelTV.hcap.MediaPlay( HotelTV.hcap.MediaPlay(
HotelTV.api.GetBaseUrl() + uri_video, uri_video,
"", "",
"video/mp4", "video/mp4",
1, 1,

View File

@@ -321,7 +321,7 @@ HotelTV.ui_welcome = (function() {
/** Play movie clip */ /** Play movie clip */
HotelTV.hcap.MediaPlay( HotelTV.hcap.MediaPlay(
HotelTV.api.GetBaseUrl() + _ctzWc.videos[_state.lang].download, _ctzWc.videos[_state.lang].download,
null, null,
"video/mp4", "video/mp4",
1, 1,