Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-09-04 13:38:16 +0300
committerGitHub <noreply@github.com>2020-09-04 13:38:16 +0300
commitdc60a812842bb879b5b60393e69152716bc5e7fd (patch)
treeddc81e667406a1fc351663ba5621f2141e2e681c /apps/contactsinteraction/lib
parentc1b971ec639b9dbfee8753214acc4b0545318e28 (diff)
parent7ada6e5ab011f142dfb2bb4312dd3bd1128981da (diff)
Merge pull request #22515 from nextcloud/backport/22472/stable19
[stable19] Fix writing BLOBs to postgres with recent contacts interaction
Diffstat (limited to 'apps/contactsinteraction/lib')
-rw-r--r--apps/contactsinteraction/lib/Db/RecentContact.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contactsinteraction/lib/Db/RecentContact.php b/apps/contactsinteraction/lib/Db/RecentContact.php
index 475de093419..e6c379d0aa1 100644
--- a/apps/contactsinteraction/lib/Db/RecentContact.php
+++ b/apps/contactsinteraction/lib/Db/RecentContact.php
@@ -66,7 +66,7 @@ class RecentContact extends Entity {
$this->addType('uid', 'string');
$this->addType('email', 'string');
$this->addType('federatedCloudId', 'string');
- $this->addType('card', 'string');
+ $this->addType('card', 'blob');
$this->addType('lastContact', 'int');
}
}