Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
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
abook_android
abook_check
Commits
72945d68
Commit
72945d68
authored
Sep 13, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
会議室接続時に最初1回「meetingInfo」情報が受信されますが、contentIdがnullというException発生問題対応
parent
73d23839
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+4
-2
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
72945d68
...
@@ -895,8 +895,10 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
...
@@ -895,8 +895,10 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
if
(
meetingManager
!=
null
)
{
if
(
meetingManager
!=
null
)
{
isCollaboration
=
meetingManager
.
isCollaboration
();
isCollaboration
=
meetingManager
.
isCollaboration
();
}
}
if
(
cmd
.
equals
(
MeetingManager
.
CMD_MEETINGINFO
)
&&
!
isCollaboration
)
{
// 入室結果
if
(
cmd
.
equals
(
MeetingManager
.
CMD_MEETINGINFO
))
{
// 入室結果
showToast
(
mContext
.
getString
(
meetingManager
.
isOwner
()
?
R
.
string
.
msg_enter_as_publisher
:
R
.
string
.
msg_enter_as_subscriber
));
if
(!
isCollaboration
)
{
//文書協業中にはトースト表示させない。
showToast
(
mContext
.
getString
(
meetingManager
.
isOwner
()
?
R
.
string
.
msg_enter_as_publisher
:
R
.
string
.
msg_enter_as_subscriber
));
}
return
;
return
;
}
}
...
...
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