Potential giphy fix
This commit is contained in:
parent
6ed594a177
commit
b5253cf8e3
1 changed files with 9 additions and 0 deletions
|
@ -10,6 +10,13 @@ const giphyURLs = [
|
||||||
"giphy.com",
|
"giphy.com",
|
||||||
"www.giphy.com"
|
"www.giphy.com"
|
||||||
];
|
];
|
||||||
|
const giphyMediaURLs = [ // there could be more of these
|
||||||
|
"media0.giphy.com",
|
||||||
|
"media1.giphy.com",
|
||||||
|
"media2.giphy.com",
|
||||||
|
"media3.giphy.com",
|
||||||
|
"media4.giphy.com"
|
||||||
|
];
|
||||||
const imgurURLs = [
|
const imgurURLs = [
|
||||||
"imgur.com",
|
"imgur.com",
|
||||||
"www.imgur.com",
|
"www.imgur.com",
|
||||||
|
@ -49,6 +56,8 @@ const getImage = async (image, image2, video, gifv = false) => {
|
||||||
} else if (giphyURLs.includes(host)) {
|
} else if (giphyURLs.includes(host)) {
|
||||||
// Can result in an HTML page instead of a GIF
|
// Can result in an HTML page instead of a GIF
|
||||||
payload.path = `https://media0.giphy.com/media/${image2.split("-").pop()}/giphy.gif`;
|
payload.path = `https://media0.giphy.com/media/${image2.split("-").pop()}/giphy.gif`;
|
||||||
|
} else if (giphyMediaURLs.includes(host)) {
|
||||||
|
payload.path = `https://media0.giphy.com/media/${image2.split("/")[4]}/giphy.gif`;
|
||||||
} else if (imgurURLs.includes(host)) {
|
} else if (imgurURLs.includes(host)) {
|
||||||
// Seems that Tenor has a possibility of making GIFs static
|
// Seems that Tenor has a possibility of making GIFs static
|
||||||
payload.path = image.replace(".mp4", ".gif");
|
payload.path = image.replace(".mp4", ".gif");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue