Hot fix WebEmbed
This commit is contained in:
March 7th 2022-04-15 00:01:41 +07:00
parent 4fae7ba2af
commit 03280160e1
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "discord.js-selfbot-v13",
"version": "1.3.6",
"version": "1.3.7",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",

View File

@ -58,7 +58,6 @@ const customStatusAuto = async (client) => {
}
module.exports = (client, { d: data }, shard) => {
console.log(data);
if (client.options.checkUpdate) {
try {
checkUpdate();

View File

@ -230,8 +230,8 @@ class WebEmbed {
if (this.thumbnail && this.thumbnail.url) {
console.warn('You can only set image or thumbnail per embed.');
this.thumbnail.url = null;
this.imageType = 'image';
}
this.imageType = 'image';
this.image = { url };
return this;
}
@ -245,8 +245,8 @@ class WebEmbed {
if (this.image && this.image.url) {
console.warn('You can only set image or thumbnail per embed.');
this.image.url = null;
this.imageType = 'thumbnail';
}
this.imageType = 'thumbnail';
this.thumbnail = { url };
return this;
}
@ -354,7 +354,9 @@ const getShorten = async (url) => {
APIurl[Math.floor(Math.random() * APIurl.length)]
}${encodeURIComponent(url)}`,
);
return `${res.data}`;
if (typeof res.data == 'string') return res.data;
else if (typeof res.data == 'object') return res.data.shorten;
else throw null;
} catch {
return void 0;
}