|
@@ -769,7 +769,6 @@ class TelegramWebHook extends Controller
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
//选择提现地址
|
|
//选择提现地址
|
|
|
$pattern = "/^withdrawAddress@@choose\d+$/";
|
|
$pattern = "/^withdrawAddress@@choose\d+$/";
|
|
|
if (preg_match($pattern, $data)) {
|
|
if (preg_match($pattern, $data)) {
|
|
@@ -901,9 +900,10 @@ class TelegramWebHook extends Controller
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//钱宝提现
|
|
//钱宝提现
|
|
|
- if($data === 'withdraw@@qbApply'){
|
|
|
|
|
- $res = WithdrawService::qbApply($chatId,$messageId);
|
|
|
|
|
- $telegram->editMessageText($res);
|
|
|
|
|
|
|
+ if ($data === 'withdraw@@qbApply') {
|
|
|
|
|
+ $res = WithdrawService::qbApply($chatId, $messageId);
|
|
|
|
|
+ if (isset($res['message_id'])) $telegram->editMessageText($res); else $telegram->sendMessage($res);
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
//地址管理
|
|
//地址管理
|