Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chat_webview
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCommunication
chat_webview
Commits
0d400d67
Commit
0d400d67
authored
Jul 15, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #43227 新規インストールやアップデート後に文書協業を開くと「会議室サーバに接続できませんでした」と、アラート表示される
parent
d10b9423
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
public_new/js/share.js
+13
-4
No files found.
public_new/js/share.js
View file @
0d400d67
...
...
@@ -469,10 +469,7 @@ document.addEventListener("DOMContentLoaded", function () {
if
(
deleteRoomResult
.
resultCode
==
200
)
{
await
new
Promise
(
done
=>
setTimeout
(()
=>
done
(),
3000
));
}
coview_api
.
CreateRoom
(
globalUserInfo
.
roomId
,
globalUserInfo
.
coWorkType
);
if
(
isDocument
)
{
if
(
CHAT_UTIL
.
isIOS
())
{
meetingId
=
CHAT_DB
.
createContentView
();
...
...
@@ -481,6 +478,14 @@ document.addEventListener("DOMContentLoaded", function () {
}
joinMeetingId
=
meetingId
;
}
if
(
joinMeetingId
==
"-1"
)
{
//会議室作成失敗
Coview_finishCollaboration
();
return
;
}
coview_api
.
CreateRoom
(
globalUserInfo
.
roomId
,
globalUserInfo
.
coWorkType
);
}
else
if
(
collaborationJoinFlg
==
"2"
)
{
isInvited
=
InvitedFlag
.
INVITED
;
coview_api
.
JoinRoom
(
globalUserInfo
.
roomId
,
globalUserInfo
.
coWorkType
);
...
...
@@ -650,6 +655,10 @@ function changeCollaboration(changeCollaborationType) {
newMeetingId
=
android
.
createContentView
();
console
.
log
(
"newMeetingId = "
+
newMeetingId
);
}
if
(
newMeetingId
==
"-1"
)
{
//会議室作成失敗
Coview_finishCollaboration
();
return
;
}
break
;
case
COLLABORATION_TYPE
.
BOARD
:
coview_api
.
ChangeCollaboration
(
"audio"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment