remove strict check on OMB exception strings
This commit is contained in:
parent
c7d8641e7d
commit
656a977016
|
@ -76,8 +76,8 @@ class PostnoticeAction extends Action
|
||||||
$srv->handlePostNotice();
|
$srv->handlePostNotice();
|
||||||
} catch (OMB_RemoteServiceException $rse) {
|
} catch (OMB_RemoteServiceException $rse) {
|
||||||
$msg = $rse->getMessage();
|
$msg = $rse->getMessage();
|
||||||
if (preg_match('/^Revoked accesstoken/', $msg) ||
|
if (preg_match('/Revoked accesstoken/', $msg) ||
|
||||||
preg_match('/^No subscriber/', $msg)) {
|
preg_match('/No subscriber/', $msg)) {
|
||||||
$this->clientError($msg, 403);
|
$this->clientError($msg, 403);
|
||||||
} else {
|
} else {
|
||||||
$this->clientError($msg);
|
$this->clientError($msg);
|
||||||
|
|
|
@ -79,8 +79,8 @@ class UpdateprofileAction extends Action
|
||||||
$srv->handleUpdateProfile();
|
$srv->handleUpdateProfile();
|
||||||
} catch (OMB_RemoteServiceException $rse) {
|
} catch (OMB_RemoteServiceException $rse) {
|
||||||
$msg = $rse->getMessage();
|
$msg = $rse->getMessage();
|
||||||
if (preg_match('/^Revoked accesstoken/', $msg) ||
|
if (preg_match('/Revoked accesstoken/', $msg) ||
|
||||||
preg_match('/^No subscriber/', $msg)) {
|
preg_match('/No subscriber/', $msg)) {
|
||||||
$this->clientError($msg, 403);
|
$this->clientError($msg, 403);
|
||||||
} else {
|
} else {
|
||||||
$this->clientError($msg);
|
$this->clientError($msg);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user