Skip to content

Commit

Permalink
fix #968
Browse files Browse the repository at this point in the history
avoid throwing errors from the queue since they might not be caught and cause the app to freeze
  • Loading branch information
Chaphasilor committed Feb 27, 2025
1 parent e172cf3 commit b44be31
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/services/queue_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -556,8 +556,7 @@ class QueueService {

_audioHandler.nextInitialIndex = null;
} catch (e) {
_queueServiceLogger.severe(e);
rethrow;
_queueServiceLogger.severe("Error while initializing queue: $e");
}
}

Expand Down

0 comments on commit b44be31

Please sign in to comment.