From a78cbf617468bd2d24ec7e61a42798ed5b5ef291 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 13 Jan 2018 09:19:57 +0000 Subject: [PATCH] The changed field name has to be changed here as well --- src/Protocol/Diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 4d89143452..bf14b44d22 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -2199,7 +2199,7 @@ class Diaspora } logger('Received participation for ID: '.$item['id'].' - Contact: '.$contact_id.' - Server: '.$server); - dba::insert('participation', ['item' => $item['id'], 'contact' => $contact_id, 'server' => $server]); + dba::insert('participation', ['iid' => $item['id'], 'cid' => $contact_id, 'server' => $server]); return true; }