how to do a conditioning and how to add code in this code for the user so that the lighthouse does not display the message. I tried some conditioning but the results are still the same, is there anyone here who can help me ?
Note : if the notification pop-up is rejected (block), "permission denied" does not appear and still shows "permission success". Thanks :)
this my code in home.component
requestPermission() {
this.msgService.requestToken.subscribe(
(tokenize) => {
console.log('Permission Success',tokenize);
},
(error) => {
console.log("Denied", error);
}
)
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…