Update Push.php

This commit is contained in:
Anyon 2019-12-21 16:30:37 +08:00
parent e6796667c2
commit 6197f692ec

View File

@ -115,7 +115,7 @@ class Push extends Controller
$this->fromOpenid = $this->receive['tousername'];
// text, event, image, location
if (method_exists($this, ($method = $this->receive['msgtype']))) {
if (is_string(($result = $this->$method()))) return $result;
if (is_string($result = $this->$method())) return $result;
}
} catch (\Exception $e) {
$this->app->log->error("{$e->getLine()} [{$e->getCode()}] {$e->getMessage()}");