mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 00:56:48 +02:00
limit user stories to first 100
This commit is contained in:
parent
04bd98b15f
commit
8a7bbbaaed
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ Window {
|
|||
suggestions.append(story);
|
||||
});
|
||||
}
|
||||
if (data.current_page < data.total_pages) {
|
||||
if ((data.current_page < data.total_pages) && (data.current_page <= 10)) { // just 10 pages = 100 stories for now
|
||||
return getUserStoryPage(pageNumber + 1, cb);
|
||||
}
|
||||
cb();
|
||||
|
|
Loading…
Reference in a new issue