Skip to content

Commit

Permalink
Merge pull request #425 from VGJohn/skip-backward-initial-setting
Browse files Browse the repository at this point in the history
Initial value for skip backwards setting uses the skip forwards value
  • Loading branch information
ashiagr committed Oct 21, 2022
1 parent 4a1c7cc commit ebb3109
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
([#389](https://github.com/Automattic/pocket-casts-android/pull/389)).
* Added new episode lists to Automotive OS. Starred, Listening History, and Files.
([#403](https://github.com/Automattic/pocket-casts-android/pull/403)).
*
* Fixed skip backwards settings
([#425](https://github.com/Automattic/pocket-casts-android/pull/425)).
7.24.2
-----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class PlaybackSettingsFragment : BaseFragment() {
SkipTime(
primaryText = stringResource(LR.string.settings_skip_back_time),
saved = settings.skipBackwardInSecsObservable
.subscribeAsState(settings.getSkipForwardInSecs())
.subscribeAsState(settings.getSkipBackwardInSecs())
.value,
onSave = settings::setSkipBackwardInSec
)
Expand Down

0 comments on commit ebb3109

Please sign in to comment.