Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix custom skip buttons not appearing #976

Merged
merged 3 commits into from
May 18, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
([#960](https://github.com/Automattic/pocket-casts-android/pull/960)).
* Fixed crash on grouping by season
([#962](https://github.com/Automattic/pocket-casts-android/pull/962)).
* Fixed the skip buttons not appearing in the remote player views
([#976](https://github.com/Automattic/pocket-casts-android/pull/976)).
* Updates
* Link users to support forum from within the app
([#950](https://github.com/Automattic/pocket-casts-android/pull/950)).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class MediaSessionManager(
// ACTION_SKIP_TO_NEXT then the skip buttons on the lock screen are disabled. We work around this
// by hiding our custom buttons on Samsung phones. It means the buttons in Android Auto aren't our
// custom skip buttons, but it all still works.
private val MANUFACTURERS_TO_HIDE_CUSTOM_SKIP_BUTTONS = listOf("samsung", "mercedes-benz", "google")
private val MANUFACTURERS_TO_HIDE_CUSTOM_SKIP_BUTTONS = listOf("samsung", "mercedes-benz")

fun calculateSearchQueryOptions(query: String): List<String> {
val options = mutableListOf<String>()
Expand Down