We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689e560 commit dea2a63Copy full SHA for dea2a63
app/src/main/java/com/tcd/gamelauncher/MainActivity.java
@@ -183,7 +183,7 @@ private void loadGamesAsync() {
183
gameList.clear();
184
for (Game game : savedGames) {
185
synchronized (blacklist) {
186
- if (!blacklist.contains(game.packageName.trim().toLowerCase())) {
+ if (game.packageName != null && !blacklist.contains(game.packageName.trim().toLowerCase())) {
187
try {
188
game.icon = packageManager.getApplicationIcon(game.packageName);
189
gameList.add(game);
0 commit comments