if bot, don't invite people to your analytics room

This commit is contained in:
William Jordan-Cooley 2024-07-30 11:34:14 -04:00
parent e233848e64
commit ecbe421611

View file

@ -100,6 +100,7 @@ extension AnalyticsClientExtension on Client {
/// Handles case when students cannot add analytics room to space(s)
/// so teacher is still able to get analytics data for this student
void _inviteAllTeachersToAllAnalyticsRooms() {
if (userID == null || userID == BotName.byEnvironment) return;
for (final Room room in allMyAnalyticsRooms) {
room.inviteTeachersToAnalyticsRoom();
}