Add sim serial to collected device properties.

This commit is contained in:
Simo Kinnunen
2014-04-15 18:37:39 +09:00
parent fb3892ab07
commit 35cd19dc28
4 changed files with 8 additions and 3 deletions

View File

@@ -9,7 +9,11 @@ module.exports = syrup.serial()
function fetch() {
log.info('Fetching phone info')
return input.getProperties(['imei', 'phoneNumber'])
return input.getProperties([
'imei'
, 'phoneNumber'
, 'simSerial'
])
}
return fetch()