diff --git a/webapp/controller/MarketController.class.php b/webapp/controller/MarketController.class.php index 1e0b649b..db445dfe 100644 --- a/webapp/controller/MarketController.class.php +++ b/webapp/controller/MarketController.class.php @@ -1223,10 +1223,11 @@ class MarketController extends BaseController { $rows = $conn->execQuery( 'SELECT * FROM t_market_store '. - 'WHERE token_id=:token_id AND owner_address=:owner_address', + 'WHERE token_id=:token_id AND owner_address=:owner_address AND status=:status', array( ':token_id' => $row['token_id'], ':owner_address' => $row['owner_address'], + ':status' => 0, ) );