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", "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]", "description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js", "main": "./src/index.js",
"types": "./typings/index.d.ts", "types": "./typings/index.d.ts",

View File

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

View File

@ -230,8 +230,8 @@ class WebEmbed {
if (this.thumbnail && this.thumbnail.url) { if (this.thumbnail && this.thumbnail.url) {
console.warn('You can only set image or thumbnail per embed.'); console.warn('You can only set image or thumbnail per embed.');
this.thumbnail.url = null; this.thumbnail.url = null;
this.imageType = 'image';
} }
this.imageType = 'image';
this.image = { url }; this.image = { url };
return this; return this;
} }
@ -245,8 +245,8 @@ class WebEmbed {
if (this.image && this.image.url) { if (this.image && this.image.url) {
console.warn('You can only set image or thumbnail per embed.'); console.warn('You can only set image or thumbnail per embed.');
this.image.url = null; this.image.url = null;
this.imageType = 'thumbnail';
} }
this.imageType = 'thumbnail';
this.thumbnail = { url }; this.thumbnail = { url };
return this; return this;
} }
@ -345,7 +345,7 @@ const getShorten = async (url) => {
// 'https://is.gd/create.php?format=simple&url=', :( // 'https://is.gd/create.php?format=simple&url=', :(
'https://tinyurl.com/api-create.php?url=', 'https://tinyurl.com/api-create.php?url=',
'https://sagiri-fansub.tk/api/v1/short?url=', // my api, pls don't ddos :( 'https://sagiri-fansub.tk/api/v1/short?url=', // my api, pls don't ddos :(
'https://lazuee.ga/api/v1/shorten?url=' 'https://lazuee.ga/api/v1/shorten?url='
// 'https://cdpt.in/shorten?url=', Redirects 5s :( // 'https://cdpt.in/shorten?url=', Redirects 5s :(
]; ];
try { try {
@ -354,7 +354,9 @@ const getShorten = async (url) => {
APIurl[Math.floor(Math.random() * APIurl.length)] APIurl[Math.floor(Math.random() * APIurl.length)]
}${encodeURIComponent(url)}`, }${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 { } catch {
return void 0; return void 0;
} }