Explicitly cast Url objects to string

- Some systems do not do this operation automatically and it results in empty DB fields
This commit is contained in:
Hypolite Petovan 2021-10-03 14:53:06 -04:00
parent e91ba2b992
commit ee5aa2d432

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,