Commit 77ccf8c2 77ccf8c2c7ba71ed1b1a26b40c0c755e52cd55e3 by 杨俊

fix(develop): 修复报错

1 parent b2fe476d
......@@ -22,7 +22,6 @@
use Hikoon\LaravelApi\Support\ApiCode;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Bus;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Notification;
......
......@@ -11,8 +11,8 @@ protected function getExpand(): array
{
$expand = $this->input('expand', []);
return [
'push_type' => data_get($expand, 'push_type', ['tag']),
'push_user' => data_get($expand, 'push_user', []),
'push_type' => ['tag'],
'push_user' => [],
'tag_ids' => data_get($expand, 'tag_ids', []),
'lyricist' => [
'ids' => data_get($expand, 'lyricist.ids', []),
......