Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
c8caed19
Commit
c8caed19
authored
Feb 28, 2014
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed ellipsis from request states
parent
0395ad19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sessions.py
blink/sessions.py
+2
-2
No files found.
blink/sessions.py
View file @
c8caed19
...
...
@@ -1030,7 +1030,7 @@ class ServerConference(object):
if
contact_uri
.
uri
in
self
.
participants
:
raise
ValueError
(
'
%
r is already part of the conference'
%
contact_uri
.
uri
)
participant
=
ConferenceParticipant
(
contact
,
contact_uri
)
participant
.
request_status
=
'Joining
...
'
participant
.
request_status
=
'Joining'
self
.
session
.
sip_session
.
conference
.
add_participant
(
participant
.
uri
)
self
.
participants
[
participant
.
uri
]
=
participant
self
.
pending_additions
.
add
(
participant
)
...
...
@@ -1042,7 +1042,7 @@ class ServerConference(object):
raise
ValueError
(
'participant
%
r is not part of the conference'
%
participant
)
if
participant
in
self
.
pending_removals
:
return
participant
.
request_status
=
'Leaving
...
'
participant
.
request_status
=
'Leaving'
self
.
session
.
sip_session
.
conference
.
remove_participant
(
participant
.
uri
)
self
.
pending_removals
.
add
(
participant
)
notification_center
=
NotificationCenter
()
...
...
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