Commit a7eb7e89 by Masaru Abe

スクリーンロック時のsid保持方法修正

parent 10e3b383
......@@ -2278,6 +2278,10 @@ COMMON.unlockFunction = function(inputPass) {
function (data) {
if (data.result == 'success') {
ClientData.userInfo_sid(data.sid);
ClientData.userInfo_sid_local(data.sid);
//バックアップにも保持
ClientData.userInfo_sid_local_bak(data.sid);
result = true;
//forceUnlockFunc();
......
......@@ -1393,6 +1393,9 @@ CONTENTVIEW_CREATEOBJECT.createPwdRequiredTypeDialog = function(){
// update sid id
ClientData.userInfo_sid(data.sid);
ClientData.userInfo_sid_local(data.sid);
//バックアップにも保持
ClientData.userInfo_sid_local_bak(data.sid);
if(ClientData.isStreamingMode()){
//ストリーミングのビューアへ移動
......
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