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
1 changed files with 3 additions and 3 deletions

View File

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