Merge pull request #10817 from MrPetovan/task/refactor-notifications

Explicitly cast Url objects to string
This commit is contained in:
Michael Vogel
2021-10-03 21:03:03 +02:00
committed by GitHub

View File

@@ -104,11 +104,11 @@ class Notify extends BaseDepository
$fields = [
'type' => $Notify->type,
'name' => $Notify->name,
'url' => $Notify->url,
'photo' => $Notify->photo,
'url' => (string)$Notify->url,
'photo' => (string)$Notify->photo,
'msg' => $Notify->msg,
'uid' => $Notify->uid,
'link' => $Notify->link,
'link' => (string)$Notify->link,
'iid' => $Notify->itemId,
'parent' => $Notify->parent,
'seen' => $Notify->seen,