Skip to content

Commit

Permalink
chore: fix deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasn committed Jul 16, 2023
1 parent 279e40d commit 4a20368
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/blocs/audio/player_cubit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AudioPlayerCubit extends Cubit<AudioPlayerState> {
speed: 1,
),
) {
_audioPlayer.streams.position.listen(updateProgress);
_audioPlayer.stream.position.listen(updateProgress);
}

final Player _audioPlayer = Player();
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: lotti
description: Achieve your goals and keep your data private with Lotti.
publish_to: 'none'
version: 0.9.394+2285
version: 0.9.394+2286

msix_config:
display_name: LottiApp
Expand Down

0 comments on commit 4a20368

Please sign in to comment.