Updated age refresh

This commit is contained in:
Mattia Mascarello 2021-08-23 01:36:54 +02:00 committed by GitHub
parent 1be0ba2d78
commit bc8a5634e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -726,8 +726,9 @@ switch ($DATA["message"]["chat"]["id"]) {
} else { } else {
//file_put_contents("test","yes"); //file_put_contents("test","yes");
$x = $people->get($rpid); $x = $people->get($rpid);
//$x->yearsOld=years($u->birthDate); $u->yearsOld=years($u->birthDate);
//$x->save(); $u->save();
if (count($args) == 2) { if (count($args) == 2) {
if (in_array($args[1], array_keys($x->toArray()))) { if (in_array($args[1], array_keys($x->toArray()))) {
$mt = makeList([$args[1] => $x->toArray()[$args[1]]]); $mt = makeList([$args[1] => $x->toArray()[$args[1]]]);
@ -748,6 +749,8 @@ switch ($DATA["message"]["chat"]["id"]) {
if ($rpid <= 0) { if ($rpid <= 0) {
#https://webport.altervista.org/bots/telegram/lgbt/fetchCard.php?pass=737373737361113273&id=".$uid #https://webport.altervista.org/bots/telegram/lgbt/fetchCard.php?pass=737373737361113273&id=".$uid
$u = $people->get($uid); $u = $people->get($uid);
$u->yearsOld=years($u->birthDate);
$u->save();
photo_id_by_user($u, $DATA["message"]["chat"]["id"]); photo_id_by_user($u, $DATA["message"]["chat"]["id"]);
API("sendChatAction", ["chat_id" => $DATA["message"]["chat"]["id"], "action" => "upload_photo"]); API("sendChatAction", ["chat_id" => $DATA["message"]["chat"]["id"], "action" => "upload_photo"]);
API("sendPhoto", ["chat_id" => $DATA["message"]["chat"]["id"], "photo" => "https://webport.altervista.org/bots/telegram/lgbt/gdImg/archive/" . $uid . ".fi.jpeg?int=" . random_int(0, 10000), "reply_to_message_id" => $DATA["message"]["message_id"]]); API("sendPhoto", ["chat_id" => $DATA["message"]["chat"]["id"], "photo" => "https://webport.altervista.org/bots/telegram/lgbt/gdImg/archive/" . $uid . ".fi.jpeg?int=" . random_int(0, 10000), "reply_to_message_id" => $DATA["message"]["message_id"]]);