Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-bigbluebutton2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
InfraBlue
python-bigbluebutton2
Commits
97271cee
Verified
Commit
97271cee
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Align stripping of attribute names in all objects
parent
d5e505f2
No related branches found
Branches containing commit
No related tags found
1 merge request
!19
WIP: Resolve "Support recordings"
Pipeline
#2815
failed
5 years ago
Stage: test
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bigbluebutton/api/attendee.py
+2
-0
2 additions, 0 deletions
bigbluebutton/api/attendee.py
bigbluebutton/api/meeting.py
+2
-0
2 additions, 0 deletions
bigbluebutton/api/meeting.py
with
4 additions
and
0 deletions
bigbluebutton/api/attendee.py
+
2
−
0
View file @
97271cee
...
...
@@ -106,6 +106,8 @@ class Attendee:
def
_update_from_response
(
self
,
res
:
Dict
[
str
,
Any
])
->
None
:
for
name
,
value
in
res
.
items
():
name
=
name
.
lstrip
(
"
@#
"
)
if
name
==
"
role
"
:
self
.
role
=
Role
(
value
)
else
:
...
...
This diff is collapsed.
Click to expand it.
bigbluebutton/api/meeting.py
+
2
−
0
View file @
97271cee
...
...
@@ -224,6 +224,8 @@ class Meeting:
def
_update_from_response
(
self
,
res
:
Dict
[
str
,
Any
])
->
None
:
for
name
,
value
in
res
.
items
():
name
=
name
.
lstrip
(
"
@#
"
)
if
name
==
"
attendees
"
:
if
not
value
or
not
value
[
"
attendee
"
]:
self
.
attendees
.
clear
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment