mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-01 00:02:21 +09:00
Fix #2281 warning/notice if sender/recipient of message is not a member anymore
This commit is contained in:
parent
4e192668a1
commit
86548a8d6a
6 changed files with 10 additions and 8 deletions
|
|
@ -139,7 +139,7 @@ class CommunicationModel extends communication
|
|||
$member_info = $oMemberModel->getMemberInfoByMemberSrl($message->sender_srl);
|
||||
}
|
||||
|
||||
if($member_info->member_srl)
|
||||
if($member_info && isset($member_info->member_srl))
|
||||
{
|
||||
foreach($member_info as $key => $val)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue