Update FansService.php

This commit is contained in:
邹景立 2022-03-18 22:31:06 +08:00
parent 25014ee662
commit 8049a21c27

View File

@ -47,6 +47,7 @@ class FansService extends Service
if ($appid !== '') $user['appid'] = $appid; if ($appid !== '') $user['appid'] = $appid;
unset($user['privilege'], $user['groupid']); unset($user['privilege'], $user['groupid']);
$this->app->event->trigger('WechatFansUpdate', $user); $this->app->event->trigger('WechatFansUpdate', $user);
foreach ($user as $k => $v) if ($v === '') unset($user[$k]);
return !!data_save(WechatFans::class, $user, 'openid'); return !!data_save(WechatFans::class, $user, 'openid');
} }