diff options
| author | 2022-05-09 15:59:21 +0200 | |
|---|---|---|
| committer | 2022-05-09 15:59:21 +0200 | |
| commit | 9d1930d9adb4f56ae12209d3d01f4a1ed1af8503 (patch) | |
| tree | e0f61d1a5f8162d78304577477674d5471efa0a6 /config.default.php | |
| parent | 893d4d14c06fcb72835f8e152cd6f22f3209263e (diff) | |
Allow many (20k+) feeds (#4347)
* Allow many (20k+) feeds
Fix errors such as `SQL error listWhereRaw: ERROR: value "42926" is out of range for type smallint`
Start of UI performance improvements accordingly.
Diffstat (limited to 'config.default.php')
| -rw-r--r-- | config.default.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index df8e9133e..1b12834d0 100644 --- a/config.default.php +++ b/config.default.php @@ -104,7 +104,7 @@ return array( 'max_inactivity' => PHP_INT_MAX, # Max number of feeds for a user. - 'max_feeds' => 16384, + 'max_feeds' => 131072, # Max number of categories for a user. 'max_categories' => 16384, |
