Update Push.php

This commit is contained in:
Anyon 2020-10-09 14:47:06 +08:00
parent 8ff96fdbd6
commit e0db79bcc7

View File

@ -219,7 +219,7 @@ class Push extends Controller
[$news, $articles] = [MediaService::instance()->news($data['news_id']), []];
if (empty($news['articles'])) return false;
foreach ($news['articles'] as $vo) array_push($articles, [
'url' => url("@wechat/api.review/view", ['id' => $vo['id']], false, true)->build(),
'url' => url("@wechat/api.review/view/id/{$vo['id']}", [], false, true)->build(),
'title' => $vo['title'], 'picurl' => $vo['local_url'], 'description' => $vo['digest'],
]);
return $this->_sendMessage('news', ['articles' => $articles], $custom);