Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
Fixes #737
  • Loading branch information
Feichtmeier committed May 15, 2024
1 parent e51d7e5 commit 174f145
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions lib/src/playlists/view/add_to_playlist_snack_bar.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import '../../../app.dart';
import '../../../constants.dart';
import '../../../get.dart';
import '../../../globals.dart';
import '../../../l10n.dart';
import '../../../library.dart';
Expand All @@ -21,6 +23,10 @@ ScaffoldFeatureController<SnackBar, SnackBarClosedReason>
),
action: SnackBarAction(
onPressed: () {
final appModel = getIt<AppModel>();
if (appModel.fullScreen == true) {
appModel.setFullScreen(false);
}
navigatorKey.currentState
?.maybePop()
.then((value) => libraryModel.setIndex(index));
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: musicpod
description: Ubuntu music, radio and podcast player.
version: 1.4.0
version: 1.4.1

publish_to: "none"

Expand Down

0 comments on commit 174f145

Please sign in to comment.