x.comでも展開ができるように (#11757)
This commit is contained in:
parent
3f08581ae8
commit
cb80dff7df
2 changed files with 10 additions and 1 deletions
|
@ -133,7 +133,7 @@ let unknownUrl = $ref(false);
|
|||
const requestUrl = new URL(props.url);
|
||||
if (!['http:', 'https:'].includes(requestUrl.protocol)) throw new Error('invalid url');
|
||||
|
||||
if (requestUrl.hostname === 'twitter.com' || requestUrl.hostname === 'mobile.twitter.com') {
|
||||
if (requestUrl.hostname === 'twitter.com' || requestUrl.hostname === 'mobile.twitter.com' || requestUrl.hostname === 'x.com' || requestUrl.hostname === 'mobile.x.com') {
|
||||
const m = requestUrl.pathname.match(/^\/.+\/status(?:es)?\/(\d+)/);
|
||||
if (m) tweetId = m[1];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue