From 2b433e0ea6c1310a6ec56a3bcee2b3a695b7cd85 Mon Sep 17 00:00:00 2001 From: nupplaPhil Date: Tue, 28 Jan 2020 22:06:59 +0100 Subject: [PATCH] fix https://github.com/friendica/friendica/issues/8187 --- src/Object/Notification/Introduction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Object/Notification/Introduction.php b/src/Object/Notification/Introduction.php index 19fda4c158..4757282730 100644 --- a/src/Object/Notification/Introduction.php +++ b/src/Object/Notification/Introduction.php @@ -262,7 +262,7 @@ class Introduction implements \JsonSerializable { $this->label = $data['label'] ?? ''; $this->type = $data['str_type'] ?? ''; - $this->intro_id = $data['$intro_id'] ?? -1; + $this->intro_id = $data['intro_id'] ?? -1; $this->madeBy = $data['madeBy'] ?? ''; $this->madeByUrl = $data['madeByUrl'] ?? ''; $this->madeByZrl = $data['madeByZrl'] ?? '';