Faster redirect

This commit is contained in:
Dylan 2024-09-02 15:28:39 +01:00
parent 5b974427a7
commit cfa4920466

View File

@ -23,9 +23,11 @@ function openTweet(tweetId){
}else if (os === 'ios'){
window.location.replace(url);
}
setTimeout(() => {
window.location = `https://x.com/i/status/${tweetId}`
}, 1000)
}else{
window.location = `https://x.com/i/status/${tweetId}`
}
setTimeout(() => {
window.location = `https://x.com/i/status/${tweetId}`
}, 1000)
}