no devicePushToken for browser

This commit is contained in:
Kyle Spearrin 2017-11-14 09:48:21 -05:00
parent ef0f4632ca
commit f084da6202
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ class TokenRequest {
obj.deviceType = this.device.type;
obj.deviceIdentifier = this.device.identifier;
obj.deviceName = this.device.name;
obj.devicePushToken = this.device.pushToken;
// no push tokens for browser apps yet
// obj.devicePushToken = this.device.pushToken;
}
if (this.token && this.provider !== null && (typeof this.provider !== 'undefined')) {