Skip to content

Commit

Permalink
set new history limit (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ety001 authored Nov 20, 2023
1 parent c8611fe commit 0f41467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/AccountController.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function viewAction()
$this->getAccountRC();
$this->view->props = $this->steemd->getProps();
try {
$this->view->activity = array_reverse($this->steemd->getAccountHistory($account));
$this->view->activity = array_reverse($this->steemd->getAccountHistory($account, 10));
} catch (Exception $e) {
$this->view->activity = false;
}
Expand Down

0 comments on commit 0f41467

Please sign in to comment.