diff options
| author | 2025-10-14 11:01:23 +0200 | |
|---|---|---|
| committer | 2025-10-14 11:01:23 +0200 | |
| commit | 20ecbeb09cdf05ca3ffd44980e9070b34c2b71ec (patch) | |
| tree | f5cc8b852b6a10f24707349677b3d11eebde0c45 /app/Models | |
| parent | 201c113041c97d6ba6d02fd851be02ac84a11780 (diff) | |
Fix drag&drop of user query losing information (#8113)
* Fix drag&drop of user query losing information
Information about RSS sharing was lost after a drag&drop
* Fix related type cast
Diffstat (limited to 'app/Models')
| -rw-r--r-- | app/Models/UserConfiguration.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Models/UserConfiguration.php b/app/Models/UserConfiguration.php index 2cb11bbe4..88263e1ad 100644 --- a/app/Models/UserConfiguration.php +++ b/app/Models/UserConfiguration.php @@ -44,7 +44,8 @@ declare(strict_types=1); * @property bool $onread_jump_next * @property string $passwordHash * @property int $posts_per_page - * @property array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string,token?:string}> $queries + * @property array<int,array{get?:string,name?:string,order?:string,search?:string,state?:int,url?:string,token?:string, + * shareRss?:bool,shareOpml?:bool,description?:string,imageUrl?:string}> $queries * @property bool $reading_confirm * @property int $since_hours_posts_per_rss * @property bool $show_fav_unread |
