Skip to content

Commit

Permalink
Listのエラー修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shiosyakeyakini-info committed Oct 14, 2024
1 parent f794d98 commit 90d0aa0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/services/streaming_service_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ class StreamingService implements StreamingController, WebSocketController {
}
final subNotes = _subNotes;
for (final subscriptedNotes in subNotes) {
subNote(subscriptedNotes);
sendRequest(
StreamingRequestType.subNote,
StreamingRequestBody(id: subscriptedNotes, params: {}),
);
}
} catch (e) {
if (retryCounts < maxRetryCounts) {
Expand Down

0 comments on commit 90d0aa0

Please sign in to comment.