Skip to content

Commit

Permalink
Merge pull request #884 from PennyDreadfulMTG/more-events-to-fix-snafu
Browse files Browse the repository at this point in the history
Temporarily increase the number of events showin on recent_events to fix snafu
  • Loading branch information
bakert authored Jan 15, 2025
2 parents 856e514 + 2501be8 commit 2abac10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatherling/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function main(): never
FROM events e
WHERE e.finalized AND e.start < NOW()
ORDER BY e.start DESC
LIMIT 10';
LIMIT 100';
$eventNames = db()->strings($sql);
foreach ($eventNames as $eventName) {
$event = new Event($eventName);
Expand Down

0 comments on commit 2abac10

Please sign in to comment.