]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/UserItem.php
Cast field data when ATTR_EMULATE_PREPARES is enabled
[friendica.git] / src / Model / UserItem.php
index b7dfec4b1228afaa4dfe722f36b0a28ad1fe8183..38e9adc6ea26d451375347d144525b46ebfeebd1 100644 (file)
@@ -156,7 +156,9 @@ class UserItem
 
                Logger::info('Set notification', ['iid' => $item['id'], 'uid' => $uid, 'notification-type' => $notification_type]);
 
-               DBA::update('user-item', ['notification-type' => $notification_type], ['iid' => $item['id'], 'uid' => $uid], true);
+               $fields = ['notification-type' => $notification_type];
+               Post\User::update($item['uri-id'], $uid, $fields);
+               DBA::update('user-item', $fields, ['iid' => $item['id'], 'uid' => $uid], true);
        }
 
        /**