Skip to content

Commit

Permalink
fix #618
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuaois committed Jan 16, 2025
1 parent f42d310 commit 0734d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/player/player_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ abstract class _PlayerController with Store {
if (Utils.isDesktop()) {
volume = volume != -1 ? volume : 100;
} else {
FlutterVolumeController.getVolume().then((value) {
await FlutterVolumeController.getVolume().then((value) {
volume = (value ?? 0.0) * 100;
});
}
Expand Down

0 comments on commit 0734d78

Please sign in to comment.