From 9a6dd623db15c1a1eb0140025e7b2b6df585db6b Mon Sep 17 00:00:00 2001 From: KodeStar Date: Wed, 30 Mar 2022 13:14:05 +0100 Subject: [PATCH] add tag_id to fillable to try and fix #810 --- app/Item.php | 2 +- config/app.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Item.php b/app/Item.php index 6152f9a4..cdb5075f 100644 --- a/app/Item.php +++ b/app/Item.php @@ -30,7 +30,7 @@ class Item extends Model // protected $fillable = [ - 'title', 'url', 'colour', 'icon', 'appdescription', 'description', 'pinned', 'order', 'type', 'class', 'user_id', 'appid', + 'title', 'url', 'colour', 'icon', 'appdescription', 'description', 'pinned', 'order', 'type', 'class', 'user_id', 'tag_id', 'appid', ]; diff --git a/config/app.php b/config/app.php index 9f78f2bf..2dff8027 100644 --- a/config/app.php +++ b/config/app.php @@ -14,7 +14,7 @@ return [ */ 'name' => env('APP_NAME', 'Heimdall'), - 'version' => '2.4.8', + 'version' => '2.4.9', /* |--------------------------------------------------------------------------