fix: extras option for app.intent() handles data types incorrectly
This commit is contained in:
@@ -11,7 +11,7 @@ module.exports = function(__runtime__, scope){
|
|||||||
}
|
}
|
||||||
if (i.extras) {
|
if (i.extras) {
|
||||||
for (var key in i.extras) {
|
for (var key in i.extras) {
|
||||||
intent.putExtra(key, i.extras[key].toString());
|
intent.putExtra(key, i.extras[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (i.category) {
|
if (i.category) {
|
||||||
|
|||||||
Reference in New Issue
Block a user