Skip to content

Commit

Permalink
Fix Undefined array key.
Browse files Browse the repository at this point in the history
  • Loading branch information
toddy15 authored and Quix0r committed Jan 16, 2024
1 parent a116397 commit 6396147
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Module/Conversation/Community.php
Expand Up @@ -132,8 +132,8 @@ protected function content(array $request = []): string
$pager = new BoundariesPager(
$this->l10n,
$this->args->getQueryString(),
$items[0]['received'],
$items[count($items) - 1]['received'],
$items[array_key_first($items)]['received'],
$items[array_key_last($items)]['received'],
$this->itemsPerPage
);

Expand Down

0 comments on commit 6396147

Please sign in to comment.