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 32ada42 commit 1385f38Copy full SHA for 1385f38
recipes/android/src/android/broadcast.py
@@ -35,8 +35,8 @@ def _expand_partial_name(partial_name):
35
36
# resolve actions/categories first
37
Intent = autoclass('android.content.Intent')
38
- resolved_actions = [_expand_partial_name(x) for x in actions]
39
- resolved_categories = [_expand_partial_name(x) for x in categories]
+ resolved_actions = [_expand_partial_name(x) for x in actions or []]
+ resolved_categories = [_expand_partial_name(x) for x in categories or []]
40
41
# resolve android API
42
PythonActivity = autoclass('org.renpy.android.PythonActivity')
0 commit comments