|
37 | 37 |
|
38 | 38 | import com.google.android.exoplayer2.ext.mediasession.MediaSessionConnector; |
39 | 39 |
|
40 | | -import org.schabi.newpipe.ktx.BundleKt; |
41 | 40 | import org.schabi.newpipe.player.mediabrowser.MediaBrowserImpl; |
42 | 41 | import org.schabi.newpipe.player.mediabrowser.MediaBrowserPlaybackPreparer; |
43 | 42 | import org.schabi.newpipe.player.mediasession.MediaSessionPlayerUi; |
@@ -127,8 +126,8 @@ public void onCreate() { |
127 | 126 | public int onStartCommand(final Intent intent, final int flags, final int startId) { |
128 | 127 | if (DEBUG) { |
129 | 128 | Log.d(TAG, "onStartCommand() called with: intent = [" + intent |
130 | | - + "], extras = [" + BundleKt.toDebugString(intent.getExtras()) |
131 | | - + "], flags = [" + flags + "], startId = [" + startId + "]"); |
| 129 | + + "], extras = [" + intent.getExtras() + "], flags = [" + flags |
| 130 | + + "], startId = [" + startId + "]"); |
132 | 131 | } |
133 | 132 |
|
134 | 133 | // All internal NewPipe intents used to interact with the player, that are sent to the |
@@ -270,7 +269,7 @@ protected void attachBaseContext(final Context base) { |
270 | 269 | public IBinder onBind(final Intent intent) { |
271 | 270 | if (DEBUG) { |
272 | 271 | Log.d(TAG, "onBind() called with: intent = [" + intent |
273 | | - + "], extras = [" + BundleKt.toDebugString(intent.getExtras()) + "]"); |
| 272 | + + "], extras = [" + intent.getExtras() + "]"); |
274 | 273 | } |
275 | 274 |
|
276 | 275 | if (BIND_PLAYER_HOLDER_ACTION.equals(intent.getAction())) { |
|
0 commit comments