Authored by wuxiao

直播预告时间为前一天并且未直播的视频,后台编辑成精选房间后,前台精选房间区域会正常展示,时间取错成 12.31 19:00

http://jira.yoho.cn:8888/browse/YH-3991
... ... @@ -48,6 +48,14 @@ class LivingController extends BaseController
$this->cache->set($key, json_encode($ret), Yii::$app->params['defaultCacheExpire'], $dependency);
}
if (is_string($ret)){
$ret = json_decode($ret,true);
}
$ret = array_filter($ret,function($row){
return !$row['starting_time'] ? true : ($row['starting_time'] > time());
});
$this->renderJson(Yii::$app->params['success_code'],'',$ret);
}
... ...