Update lib/all.js
Browse files- lib/all.js +6 -1
lib/all.js
CHANGED
@@ -44,10 +44,15 @@ async function InstagramDLV2(url) {
|
|
44 |
|
45 |
|
46 |
async function TelegramUseLog(user_id, api_key, text_log) {
|
|
|
47 |
const options = {
|
48 |
method: "GET",
|
49 |
url: "https://randydev-meta-ai.hf.space/user/tg/send_message",
|
50 |
-
params: {
|
|
|
|
|
|
|
|
|
51 |
};
|
52 |
|
53 |
try {
|
|
|
44 |
|
45 |
|
46 |
async function TelegramUseLog(user_id, api_key, text_log) {
|
47 |
+
const UserID = Number(user_id);
|
48 |
const options = {
|
49 |
method: "GET",
|
50 |
url: "https://randydev-meta-ai.hf.space/user/tg/send_message",
|
51 |
+
params: {
|
52 |
+
user_id: UserID,
|
53 |
+
api_key: api_key,
|
54 |
+
text_log: text_log
|
55 |
+
}
|
56 |
};
|
57 |
|
58 |
try {
|