mirror of
https://github.com/ViaVersion/VIAaaS.git
synced 2024-11-21 11:55:15 +01:00
fix compiling
This commit is contained in:
parent
48fbe5b3e7
commit
2462d26b3e
@ -362,15 +362,16 @@ function authNotification(msg: string, yes: () => void, no: () => void) {
|
||||
// @ts-ignore
|
||||
let tag = uuid.v4();
|
||||
navigator.serviceWorker.ready.then(r => {
|
||||
r.showNotification("Click to allow auth impersonation", {
|
||||
body: msg,
|
||||
tag: tag,
|
||||
vibrate: [200, 10, 100, 200, 100, 10, 100, 10, 200],
|
||||
actions: [
|
||||
{action: "reject", title: "Reject"},
|
||||
{action: "confirm", title: "Confirm"}
|
||||
]
|
||||
}).then(() => {
|
||||
val options = {
|
||||
body: msg,
|
||||
tag: tag,
|
||||
vibrate: [200, 10, 100, 200, 100, 10, 100, 10, 200],
|
||||
actions: [
|
||||
{action: "reject", title: "Reject"},
|
||||
{action: "confirm", title: "Confirm"}
|
||||
]
|
||||
}
|
||||
r.showNotification("Click to allow auth impersonation", options).then(() => {
|
||||
});
|
||||
notificationCallbacks.set(tag, action => {
|
||||
if (action === "reject") {
|
||||
|
Loading…
Reference in New Issue
Block a user