Use a multi-subscription stream for Sentry errors
This commit is contained in:
parent
4eed676a2a
commit
53507ae2ca
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ class SuperLogging {
|
|||
static late bool sentryIsEnabled;
|
||||
|
||||
static Future<void> setupSentry() async {
|
||||
await for (final error in sentryQueueControl.stream) {
|
||||
await for (final error in sentryQueueControl.stream.asBroadcastStream()) {
|
||||
try {
|
||||
Sentry.captureException(
|
||||
error,
|
||||
|
|
Loading…
Reference in a new issue