From f08f7dcff988de90e899ce310246f0b552a4fe3d Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 16 Oct 2025 21:15:44 +0200 Subject: Sort by article length (#8119) * Sort by article length fix https://github.com/FreshRSS/Extensions/issues/378 Very basic using simply SQL `LENGTH()` function. image * Improve content length retrieval --- app/Models/UserConfiguration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/UserConfiguration.php') diff --git a/app/Models/UserConfiguration.php b/app/Models/UserConfiguration.php index 88263e1ad..eaa08d92d 100644 --- a/app/Models/UserConfiguration.php +++ b/app/Models/UserConfiguration.php @@ -55,7 +55,7 @@ declare(strict_types=1); * @property bool $show_nav_buttons * @property 'big'|'small'|'none' $mark_read_button * @property 'ASC'|'DESC' $sort_order - * @property 'id'|'c.name'|'date'|'f.name'|'link'|'title'|'rand' $sort + * @property 'id'|'c.name'|'date'|'f.name'|'link'|'title'|'rand'|'length' $sort * @property array> $sharing * @property array $shortcuts * @property bool $sides_close_article -- cgit v1.2.3