Commit 67366ff4 by Takatoshi Miura

アーカイブ詳細修正

parent 03162792
...@@ -1730,7 +1730,10 @@ CHAT_UI.refreshArchiveDetailScreen = function(archiveId) { ...@@ -1730,7 +1730,10 @@ CHAT_UI.refreshArchiveDetailScreen = function(archiveId) {
// 参加ユーザ情報を表示 // 参加ユーザ情報を表示
let attendUserList = archive.attendUserIds; let attendUserList = archive.attendUserIds;
attendUserList = JSON.parse(archive.attendUserIds); if (typeof(android) != "undefined") {
// ios実装不要
attendUserList = JSON.parse(archive.attendUserIds);
}
attendUserList.forEach(function(user) { attendUserList.forEach(function(user) {
......
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