From 3e8eec68ea764aaf56b6959efc67eafa89045705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Jaussoin?= Date: Mon, 13 Feb 2023 14:06:29 +0100 Subject: [PATCH] Fix #76 Remove useless expired_at cast --- flexiapi/app/Device.php | 1 - 1 file changed, 1 deletion(-) diff --git a/flexiapi/app/Device.php b/flexiapi/app/Device.php index b0ae46e..ba15fe7 100644 --- a/flexiapi/app/Device.php +++ b/flexiapi/app/Device.php @@ -44,7 +44,6 @@ class Device extends Model } $this->uuid = \substr($result['sip.instance'], 2, -2); - $this->expires_at = Carbon::createFromTimestamp($result['message-expires']); $this->update_time = Carbon::createFromTimestamp($result['updatedAt']); $this->user_agent = $result['userAgent']; }