Skip to content

Commit

Permalink
fix: AudioEvent missing isPrepared logic (#1521)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzyzcjy authored May 29, 2023
1 parent 4c0d554 commit 1fa46c2
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ class AudioEvent {
eventType == other.eventType &&
duration == other.duration &&
position == other.position &&
logMessage == other.logMessage;
logMessage == other.logMessage &&
isPrepared == other.isPrepared;
}

@override
Expand All @@ -55,6 +56,7 @@ class AudioEvent {
duration,
position,
logMessage,
isPrepared,
);

@override
Expand All @@ -63,7 +65,8 @@ class AudioEvent {
'eventType: $eventType, '
'duration: $duration, '
'position: $position, '
'logMessage: $logMessage'
'logMessage: $logMessage, '
'isPrepared: $isPrepared'
')';
}
}

0 comments on commit 1fa46c2

Please sign in to comment.