### Version Media3 1.2.1 ### More version details _No response_ ### Devices that reproduce the issue Samsung Galaxy A12 SM-A125U ### Devices that do not reproduce the issue _No response_ ### Reproducible in the demo app? Not tested ### Reproduction steps Create a ```ForwardingPlayer``` like so ```kt class MyPlayer( private var context: Context, ) : ForwardingPlayer( ExoPlayer.Builder(context) .setSkipSilenceEnabled(true) .setSeekParameters(SeekParameters.EXACT) .build() ) { override fun seekToNextMediaItem() { // custom behavior } } ``` Create a ```MediaLibrarySession``` like so ```kt mediaSession = MediaLibraryService.MediaLibrarySession.Builder( service, player, callback ).build() ``` Create a ```MediaBrowser``` like so: ```kt browser = MediaBrowser.Builder(applicationContext, sessionToken) .buildAsync() .await() ``` Then call ```MediaBrowser.seekToNextMediaItem()``` ```kt browser.seekToNextMediaItem() ``` and notice that ```ForwardingPlayer.seekToNextMediaItem()``` is not called. ### Expected result For the ```ForwardingPlayer``` to get the ```seekToNextMediaItem()``` call. ### Actual result The ```seekToNextMediaItem()``` method of the ```ForwardingPlayer``` is not called. ### Media Not applicable ### Bug Report - [X] You will email the zip file produced by `adb bugreport` to android-media-github@google.com after filing this issue.