Skip to content

Commit

Permalink
fix error code
Browse files Browse the repository at this point in the history
  • Loading branch information
DoveChen committed Feb 4, 2021
1 parent 65f9b86 commit d198f00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Work.php
Original file line number Diff line number Diff line change
Expand Up @@ -992,8 +992,8 @@ public function CheckRoomAgree (MsgAuditCheckAgree $msgAuditCheck)
public function GroupChatGet ($roomId)
{

Utils::checkNotEmptyStr($roomid, 'roomid');
self::_HttpCall(self::GROUP_CHAT_GET, 'POST', ['roomid' => $roomid]);
Utils::checkNotEmptyStr($roomId, 'roomid');
self::_HttpCall(self::GROUP_CHAT_GET, 'POST', ['roomid' => $roomId]);

return $this->repJson;
}
Expand Down

0 comments on commit d198f00

Please sign in to comment.