Skip to content

Instantly share code, notes, and snippets.

@plateaukao
Created September 29, 2020 14:48
Show Gist options
  • Save plateaukao/f8c3392e9f87f76f9a3de0d59b8a0c7b to your computer and use it in GitHub Desktop.
Save plateaukao/f8c3392e9f87f76f9a3de0d59b8a0c7b to your computer and use it in GitHub Desktop.
function previewUrlInfo(url, isAutoSend = false) {
// handle facebook no preview issue
var oldUrl = new URL(url);
if (oldUrl.hostname.includes('facebook')) {
oldUrl.hostname = 'mobile.facebook.com';
}
...
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment