Update mios.ts
This commit is contained in:
		
							parent
							
								
									c598a9cba2
								
							
						
					
					
						commit
						cad1e0458f
					
				|  | @ -189,8 +189,8 @@ export default class MiOS extends EventEmitter { | |||
| 			// Register
 | ||||
| 			this.api('sw/register', { | ||||
| 				endpoint: subscription.endpoint, | ||||
| 				auth: subscription.getKey('auth') ? btoa(String.fromCharCode.apply(null, new Uint8Array(subscription.getKey('auth')))) : '', | ||||
| 				publickey: subscription.getKey('p256dh') ? btoa(String.fromCharCode.apply(null, new Uint8Array(subscription.getKey('p256dh')))) : '' | ||||
| 				auth: btoa(String.fromCharCode.apply(null, new Uint8Array(subscription.getKey('auth')))), | ||||
| 				publickey: btoa(String.fromCharCode.apply(null, new Uint8Array(subscription.getKey('p256dh')))) | ||||
| 			}); | ||||
| 		}).then(() => { | ||||
| 			console.log('Server Stored Subscription.'); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue