Commit fbedcca7 by Masaru Abe

閲覧ログ送信時の例外対応強化

parent d45fb58d
......@@ -2450,7 +2450,7 @@ function RegisterLog() {
if( ClientData.serviceOpt_usable_readinglog_object() == 'Y' ){
var pageLogArray = arrContentLogs[nIndex].pageLogArray;
//詳細ログオプションが有効ならページ閲覧ログデータ作成
if( pageLogArray.length > 0 ){
if( pageLogArray != null && pageLogArray.length > 0 ){
var lines = [];
//終了時間と閲覧時間の設定
......@@ -2503,9 +2503,8 @@ function RegisterLog() {
}
var objectLogArray = arrContentLogs[nIndex].objectLogArray;
//詳細ログオプションが有効ならページ閲覧ログデータ作成
if( objectLogArray.length > 0 ){
if( objectLogArray != null && objectLogArray.length > 0 ){
var lines = [];
var actionDate;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment