Tweaked the Room.functional_display_name() to not return anything for more variations of 'breakout' room names.
- Legacy-Id: 11585
This commit is contained in:
parent
0eaa07f056
commit
769c6f6137
|
@ -355,7 +355,7 @@ class Room(models.Model):
|
|||
def functional_display_name(self):
|
||||
if not self.functional_name:
|
||||
return ""
|
||||
if self.functional_name.lower().startswith('breakout'):
|
||||
if 'breakout' in self.functional_name.lower():
|
||||
return ""
|
||||
if self.functional_name[0].isdigit():
|
||||
return ""
|
||||
|
|
Loading…
Reference in a new issue