Skip to content

Commit 9fc3dde

Browse files
committed
Fix Play with Kodi button in Player always prompts to install Kore
1 parent 332b90d commit 9fc3dde

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

app/src/main/java/org/schabi/newpipe/util/NavigationHelper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,7 @@ public static void playWithKore(final Context context, final Uri videoURL) {
596596
final Intent intent = new Intent(Intent.ACTION_VIEW);
597597
intent.setPackage(context.getString(R.string.kore_package));
598598
intent.setData(videoURL);
599+
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
599600
context.startActivity(intent);
600601
}
601602
}

0 commit comments

Comments
 (0)