From b176423eff76aec24417cffc914f90c6245a890d Mon Sep 17 00:00:00 2001 From: Anyon Date: Sat, 14 Dec 2019 17:17:53 +0800 Subject: [PATCH] Update Config.php --- app/wechat/controller/Config.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/wechat/controller/Config.php b/app/wechat/controller/Config.php index e096b658f..3d158b41e 100644 --- a/app/wechat/controller/Config.php +++ b/app/wechat/controller/Config.php @@ -63,7 +63,11 @@ class Config extends Controller } else { foreach ($this->request->post() as $k => $v) sysconf($k, $v); if ($this->request->post('wechat.type') === 'thr') { - WechatService::ThinkAdminConfig()->setApiNotifyUri($this->thrNotify); + try { + WechatService::ThinkAdminConfig()->setApiNotifyUri($this->thrNotify); + } catch (\Exception $exception) { + $this->error($exception->getMessage()); + } } sysoplog('微信管理', '修改微信授权配置成功'); $this->success('微信参数修改成功!');