I'm facing an issue with redirecting users to Twitter using window.open in a specific function. It seems like the instruction is being ignored, even though it works perfectly on other pages. Any ideas on how to fix this?
answerQuestion() {
if (!this.isAnswerValid()) {
this.presentToast('Answer must be between 1 and 140 characters')
return
}
this.loading.present()
this.questionsService.answerQuestion(this.question, this.answerText, this.imageURL)
.then(res => {
if (res) {
if (this.twitter) {
let q = this.question.question
if (q.length > 100) {
q = q.substring(0, 101)
}
let a = this.answerText
if (a.length > 100) {
a = a.substring(0, 101)
}
const url = 'https://nonicapp.web.app/user/' + this.auth.user?.username
const tweet = q + " - " + a + " "
window.open('https://twitter.com/intent/tweet?text=' + tweet + '&hashtags=nonic&url=' + url, '_system')
}
this.router.navigateByUrl('/inbox', { replaceUrl: true });
} else {
this.presentToast('Something went wrong, please try again.')
}
})
.catch(err => {
console.warn(err)
this.presentToast('Something went wrong, please try again.')
})
.finally(() => {
this.loading.dismiss()
})
}