From 99f8f40b2cbd740e63e5dcc21c887d317cd03d49 Mon Sep 17 00:00:00 2001 From: hoey94 Date: Fri, 20 Dec 2024 10:42:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=BF=E9=97=AE=E5=9F=9F=E5=90=8D?= =?UTF-8?q?=E8=AE=B0=E5=BD=95=E6=8A=A5=E9=94=99=20#81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/lib/dns/aliyun.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/dns/aliyun.php b/app/lib/dns/aliyun.php index f53c3c3..4de5cf1 100644 --- a/app/lib/dns/aliyun.php +++ b/app/lib/dns/aliyun.php @@ -137,7 +137,7 @@ class aliyun implements DnsInterface 'Status' => $data['Status'] == 'ENABLE' ? '1' : '0', 'Weight' => isset($data['Weight']) ? $data['Weight'] : null, 'Remark' => isset($data['Remark']) ? $data['Remark'] : null, - 'UpdateTime' => isset($row['UpdateTimestamp']) ? date('Y-m-d H:i:s', intval($data['UpdateTimestamp'] / 1000)) : null, + 'UpdateTime' => isset($row['UpdateTimestamp']) ? date('Y-m-d H:i:s', intval($data['UpdateTimestamp'] * 1000 / 1000)) : null, ]; } return false;