1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-10-28 05:47:39 +00:00

Merge pull request #6429 from TiA4f8R/fix-play-with-kodi-player-button

Fix Play with Kodi button in Player always prompts to install Kore
This commit is contained in:
Tobi
2021-06-05 14:32:09 +02:00
committed by GitHub

View File

@@ -596,6 +596,7 @@ public final class NavigationHelper {
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setPackage(context.getString(R.string.kore_package));
intent.setData(videoURL);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
}
}