mirror of
https://github.com/lkeme/BiliHelper-personal.git
synced 2025-12-19 09:30:10 +08:00
[fix] StormRaffle
This commit is contained in:
parent
36861ba1a3
commit
cb24198cd8
@ -113,16 +113,12 @@ class StormRaffle extends BaseRaffle
|
|||||||
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴未实名或异常验证码'));
|
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴未实名或异常验证码'));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (isset($de_raw['data']) && empty($de_raw['data'])) {
|
|
||||||
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴在小黑屋'));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if ($de_raw['code'] == 0) {
|
if ($de_raw['code'] == 0) {
|
||||||
Statistics::addSuccessList(self::ACTIVE_TITLE);
|
Statistics::addSuccessList(self::ACTIVE_TITLE);
|
||||||
Log::notice(self::formatInfo($raffle['raffle_id'], $num, $de_raw['data']['mobile_content']));
|
Log::notice(self::formatInfo($raffle['raffle_id'], $num, $de_raw['data']['mobile_content']));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if ($de_raw['msg'] == '节奏风暴不存在' || $de_raw['msg'] == '节奏风暴抽奖过期') {
|
if ($de_raw['msg'] == '节奏风暴不存在' || $de_raw['msg'] == '节奏风暴抽奖过期' || $de_raw['msg'] == '没抢到') {
|
||||||
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴已经结束'));
|
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴已经结束'));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -130,6 +126,10 @@ class StormRaffle extends BaseRaffle
|
|||||||
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴已经领取'));
|
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴已经领取'));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (isset($de_raw['data']) && empty($de_raw['data'])) {
|
||||||
|
Log::notice(self::formatInfo($raffle['raffle_id'], $num, '节奏风暴在小黑屋'));
|
||||||
|
break;
|
||||||
|
}
|
||||||
if ($de_raw['msg'] == '你错过了奖励,下次要更快一点哦~') {
|
if ($de_raw['msg'] == '你错过了奖励,下次要更快一点哦~') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user