Skip to content

Commit b44be31

Browse files
committed
fix #968
avoid throwing errors from the queue since they might not be caught and cause the app to freeze
1 parent e172cf3 commit b44be31

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/services/queue_service.dart

+1-2
Original file line numberDiff line numberDiff line change
@@ -556,8 +556,7 @@ class QueueService {
556556

557557
_audioHandler.nextInitialIndex = null;
558558
} catch (e) {
559-
_queueServiceLogger.severe(e);
560-
rethrow;
559+
_queueServiceLogger.severe("Error while initializing queue: $e");
561560
}
562561
}
563562

0 commit comments

Comments
 (0)