support intl tenor links (#2438)
* support intl tenor links * update test cases
This commit is contained in:
parent
9eeff2cc5c
commit
928a626c2e
2 changed files with 13 additions and 2 deletions
|
@ -319,9 +319,12 @@ export function parseEmbedPlayerFromUrl(
|
|||
}
|
||||
|
||||
if (urlp.hostname === 'tenor.com' || urlp.hostname === 'www.tenor.com') {
|
||||
const [_, path, filename] = urlp.pathname.split('/')
|
||||
const [_, pathOrIntl, pathOrFilename, intlFilename] =
|
||||
urlp.pathname.split('/')
|
||||
const isIntl = pathOrFilename === 'view'
|
||||
const filename = isIntl ? intlFilename : pathOrFilename
|
||||
|
||||
if (path === 'view' && filename) {
|
||||
if ((pathOrIntl === 'view' || pathOrFilename === 'view') && filename) {
|
||||
const includesExt = filename.split('.').pop() === 'gif'
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue