Revert "Explicitly cast Url objects to string"

This reverts commit ee5aa2d432.
This commit is contained in:
Hypolite Petovan 2021-10-03 15:22:40 -04:00
parent ee5aa2d432
commit c40390c202

View file

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