Fixed bug when sending DALL-E images
This commit is contained in:
@@ -88,7 +88,7 @@ exports.sendPost = (post, source, channel, callback) => {
|
|||||||
// Check for embedded youtube videos and add the first four as links
|
// Check for embedded youtube videos and add the first four as links
|
||||||
const ytVideos = String(post.content).match(youtubeVideoRegex);
|
const ytVideos = String(post.content).match(youtubeVideoRegex);
|
||||||
if (ytVideos) {
|
if (ytVideos) {
|
||||||
for (const ytVideo of ytVideos.slice(0,4)){
|
for (var ytVideo of ytVideos.slice(0,4)){
|
||||||
// If the video is an embed, replace the embed to make it watchable
|
// If the video is an embed, replace the embed to make it watchable
|
||||||
if (ytVideo.includes("embed")) ytVideo = ytVideo.replace("embed/", "watch?v=");
|
if (ytVideo.includes("embed")) ytVideo = ytVideo.replace("embed/", "watch?v=");
|
||||||
postContent += `\nEmbeded Video from Post: [YouTube](${ytVideo})`
|
postContent += `\nEmbeded Video from Post: [YouTube](${ytVideo})`
|
||||||
@@ -147,4 +147,4 @@ exports.sendPost = (post, source, channel, callback) => {
|
|||||||
|
|
||||||
exports.returnHash = (...stringsIncluded) => {
|
exports.returnHash = (...stringsIncluded) => {
|
||||||
return crypto.createHash('sha1').update(`${stringsIncluded.join("-<<??//\\\\??>>-")}`).digest("base64");
|
return crypto.createHash('sha1').update(`${stringsIncluded.join("-<<??//\\\\??>>-")}`).digest("base64");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user