Description
When adding a contact with a birthday the app will throw the following error
Ti.Contacts.requestAuthorization(function(e) {
if (e.success) {
Ti.API.info('auth request success');
Ti.API.info(JSON.stringify(e));
var person = Ti.Contacts.createPerson({
firstName: 'Steven',
lastName: 'Gerrard',
organization: 'Liverpool FC',
phone:{
mobile: ['07900 000001', '07900 000002'],
work: ['+44 (0)118 925 6128', '+44 (0)118 000 0000']
},
birthday:'1980-05-30T12:00:00.000+0000'
});
} else {
Ti.API.info('auth request fail');
Ti.API.info(e);
}
});
Steps to reproduce
Add the code above to an existing app.js
Build for Windows platform
Actual result
The app will error with
Application Error: "Runtime Error: invalid vector<T> subscript"
Expected result
The birthday should be set with no errors
No comments