Skip to content

Commit 769c6f6

Browse files
committed
Tweaked the Room.functional_display_name() to not return anything for more variations of 'breakout' room names.
- Legacy-Id: 11585
1 parent 0eaa07f commit 769c6f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/meeting/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def bottom(self):
355355
def functional_display_name(self):
356356
if not self.functional_name:
357357
return ""
358-
if self.functional_name.lower().startswith('breakout'):
358+
if 'breakout' in self.functional_name.lower():
359359
return ""
360360
if self.functional_name[0].isdigit():
361361
return ""

0 commit comments

Comments
 (0)