Update WebEmbed.js

This commit is contained in:
Elysia 2023-03-05 01:51:19 +07:00
parent 051b7d88a6
commit 11ac55fcf0

View File

@ -1,6 +1,6 @@
'use strict'; 'use strict';
const axios = require('axios'); const axios = require('axios');
const baseURL = 'https://webembed.onrender.com/embed?'; const baseURL = 'https://webembed-sb.onrender.com/embed?';
const hiddenCharter = const hiddenCharter =
'||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||'; '||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||';
const { RangeError } = require('../errors'); const { RangeError } = require('../errors');
@ -56,14 +56,14 @@ class WebEmbed {
/** /**
* Using Custom WebEmbed server ? * Using Custom WebEmbed server ?
* @type {?string} https://webembed.onrender.com/embed? * @type {?string} https://webembed-sb.onrender.com/embed?
* @see https://github.com/aiko-chan-ai/WebEmbed * @see https://github.com/aiko-chan-ai/WebEmbed
*/ */
this.baseURL = data.baseURL ?? baseURL; this.baseURL = data.baseURL ?? baseURL;
/** /**
* Shorten API * Shorten API
* @type {?string} https://webembed.onrender.com/short?url= * @type {?string} https://webembed-sb.onrender.com/short?url=
* @see https://github.com/aiko-chan-ai/WebEmbed * @see https://github.com/aiko-chan-ai/WebEmbed
*/ */
this.shortenAPI = data.shortenAPI; this.shortenAPI = data.shortenAPI;