From c659165218b9dce827a781f39708e8507048c547 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Mon, 18 May 2026 19:00:43 -0400 Subject: [PATCH] fix(player): backtick doc-comment generics (analyze --fatal-infos) `Future` in the customAction doc comment tripped unintended_html_in_doc_comment (bare angle brackets read as HTML). Wrap the code identifiers in backticks. Co-Authored-By: Claude Opus 4.7 (1M context) --- flutter_client/lib/player/audio_handler.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter_client/lib/player/audio_handler.dart b/flutter_client/lib/player/audio_handler.dart index ce3a7df8..42e8dcfe 100644 --- a/flutter_client/lib/player/audio_handler.dart +++ b/flutter_client/lib/player/audio_handler.dart @@ -670,7 +670,7 @@ class MinstrelAudioHandler extends BaseAudioHandler with QueueHandler, SeekHandl /// Handles the notification favorite control (and any future custom /// actions). Toggles the current track's like via the LikeBridge, /// then re-broadcasts so the heart icon/label flips. Signature - /// matches AudioHandler.customAction (Future). + /// matches `AudioHandler.customAction` (`Future`). @override Future customAction(String name, [Map? extras]) async {