removed debugger statement from my_analytics_controller update function - not an error state
This commit is contained in:
parent
70de0fc866
commit
057f07d210
1 changed files with 2 additions and 5 deletions
|
|
@ -229,11 +229,8 @@ class MyAnalyticsController {
|
|||
/// top level analytics sending function. Gather recent messages and activity records,
|
||||
/// convert them into the correct formats, and send them to the analytics room
|
||||
Future<void> _updateAnalytics() async {
|
||||
// if missing important info, don't send analytics
|
||||
if (userL2 == null || _client.userID == null) {
|
||||
debugger(when: kDebugMode);
|
||||
return;
|
||||
}
|
||||
// if missing important info, don't send analytics. Could happen if user just signed up.
|
||||
if (userL2 == null || _client.userID == null) return;
|
||||
|
||||
// analytics room for the user and current target language
|
||||
final Room analyticsRoom = await _client.getMyAnalyticsRoom(userL2!);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue