Browse Source

update condition

main
ghost 9 months ago
parent
commit
849e1e1d67
  1. 20
      src/controller/room.php

20
src/controller/room.php

@ -585,17 +585,15 @@ class Room @@ -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;
}
}
}

Loading…
Cancel
Save