More claims fix #91

Merged
akinwale merged 8 commits from more-content-fix into master 2020-10-28 15:57:26 +01:00
Showing only changes of commit c003a6b23a - Show all commits

View file

@ -220,9 +220,8 @@ class MainController extends AppController {
if (isset($claim->publisher) || $claim->claim_type == 1) {
// find more claims for the publisher
$moreClaimsQuery = $this->Claims->find()->select([
'claim_id', 'bid_state', 'price', 'fee', 'fee_currency', 'is_nsfw', 'claim_type',
'name', 'title', 'description', 'content_type', 'language', 'author', 'license',
'content_type'
'claim_id', 'bid_state', 'fee', 'fee_currency', 'is_nsfw', 'claim_type', 'name',
'title', 'description', 'content_type', 'language', 'author', 'license', 'content_type'
])->select(['publisher' => 'C.name'])->leftJoin(['C' => 'claim'], ['C.claim_id = Claims.publisher_id'])->where(['Claims.claim_type' => 1, 'Claims.id <>' => $claim->id, 'Claims.publisher_id' => isset($claim->publisher) ? $claim->publisher_id : $claim->claim_id])->limit(9);
if (isset($claim->publisher) && $claim->publisher->claim_id !== 'f2cf43b86b9d70175dc22dbb9ff7806241d90780') { // prevent ORDER BY for this particular claim
$moreClaimsQuery = $moreClaimsQuery->order(['Claims.fee' => 'DESC', 'RAND()' => 'DESC']);