We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 490a6ee commit cbdf3e4Copy full SHA for cbdf3e4
plugins/greenieboard/commands.py
@@ -190,7 +190,7 @@ def format_landing(landing: dict) -> str:
190
name = user.display_name
191
else:
192
name = user
193
- num_landings = max(self.get_config().get('num_landings', 25), 25)
+ num_landings = min(self.get_config().get('num_landings', 25), 25)
194
async with self.apool.connection() as conn:
195
async with conn.cursor(row_factory=dict_row) as cursor:
196
await cursor.execute("""
0 commit comments