diff --git a/src/controller/room.php b/src/controller/room.php index 418cd30..ed2d63b 100644 --- a/src/controller/room.php +++ b/src/controller/room.php @@ -585,17 +585,15 @@ class Room { if ($post['txid'] == $quote) { - $quote = $this->_quote( - $this->_post( - $namespace, - $post, - $raw, - 'value' - ), - true - ); - - break; + if ($_post = $this->_post($namespace, $post, $raw, 'value')) + { + $quote = $this->_quote( + $_post, + true + ); + + break; + } } }