Skip to content

Commit

Permalink
Android: Add app link intent URI to channels projection
Browse files Browse the repository at this point in the history
This a proper fix for https://bugs.dolphin-emu.org/issues/12561,
which was previously fixed by a hackfix in 98bdf3b.
  • Loading branch information
JosJuice committed Jun 27, 2022
1 parent e18053d commit 2b36587
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -50,8 +50,9 @@ public class TvUtil

private static final String[] CHANNELS_PROJECTION = {
TvContractCompat.Channels._ID,
TvContract.Channels.COLUMN_DISPLAY_NAME,
TvContractCompat.Channels.COLUMN_BROWSABLE
TvContractCompat.Channels.COLUMN_DISPLAY_NAME,
TvContractCompat.Channels.COLUMN_BROWSABLE,
TvContractCompat.Channels.COLUMN_APP_LINK_INTENT_URI
};
private static final String LEANBACK_PACKAGE = "com.google.android.tvlauncher";

Expand Down

0 comments on commit 2b36587

Please sign in to comment.