]> git.mxchange.org Git - friendica.git/commitdiff
Fix for missing fields
authorMichael <heluecht@pirati.ca>
Wed, 15 Apr 2020 05:11:45 +0000 (05:11 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 15 Apr 2020 05:11:45 +0000 (05:11 +0000)
src/Model/Item.php

index b9c01809fde7aeeaf6216c92c0bf6a8131d1aa1f..267ac893633fbe3f893f0a708d5e6bc052b1ab08 100644 (file)
@@ -342,7 +342,7 @@ class Item
                        }
                }
 
-               if (array_key_exists('signed_text', $row) && array_key_exists('interaction', $row) && !is_null($row['interaction'])) {
+               if (array_key_exists('interaction', $row)) {
                        $row['signed_text'] = $row['interaction'];
                }
 
@@ -672,7 +672,8 @@ class Item
        {
                $fields = [];
 
-               $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent', 'guid',
+               $fields['item'] = ['id', 'uid', 'parent', 'uri', 'parent-uri', 'thr-parent',
+                       'guid', 'uri-id', 'parent-uri-id', 'thr-parent-id',
                        'contact-id', 'owner-id', 'author-id', 'type', 'wall', 'gravity', 'extid',
                        'created', 'edited', 'commented', 'received', 'changed', 'psid',
                        'resource-id', 'event-id', 'tag', 'attach', 'post-type', 'file',