From 5367d9d0377fe4502b161340edd2aad61e525dd1 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sun, 15 Mar 2020 17:12:35 +0100 Subject: [PATCH] Fix analyzer --- lib/components/audio_player.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/components/audio_player.dart b/lib/components/audio_player.dart index 9a30ed5..e867083 100644 --- a/lib/components/audio_player.dart +++ b/lib/components/audio_player.dart @@ -63,11 +63,8 @@ class _AudioPlayerState extends State { } _playAction() async { - print("Current mxc: ${AudioPlayer.currentMxc}"); if (AudioPlayer.currentMxc != widget.content.mxc) { if (AudioPlayer.currentMxc != null) { - print("Current mxc is wrong!"); - print("Current audioState: ${flutterSound.audioState}"); if (flutterSound.audioState != t_AUDIO_STATE.IS_STOPPED) { await flutterSound.stopPlayer(); setState(() => null); @@ -85,7 +82,6 @@ class _AudioPlayerState extends State { case t_AUDIO_STATE.IS_RECORDING: break; case t_AUDIO_STATE.IS_STOPPED: - print("start Player From Buffer"); await flutterSound.startPlayerFromBuffer( audioFile, codec: t_CODEC.CODEC_AAC,