mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-03-11 17:15:39 +00:00
hotfix: current page reset to 1 rather than 0 which was causing empty page when refresh
This commit is contained in:
parent
2a2874fb3a
commit
3cfca5013b
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ class TraktContainerState extends State<TraktContainer> {
|
|||
try {
|
||||
_logger.info('Refreshing data for ${widget.loadId}');
|
||||
_cachedItems = [];
|
||||
_currentPage = 0;
|
||||
_currentPage = 1;
|
||||
await _loadData();
|
||||
} catch (e) {}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue