fix
wangpengfei
2023-07-19 a8e7d0e2cb7302929c246fdf304507f18fdbee4e
fix

fix the time format
1个文件已修改
2 ■■■ 已修改文件
api/v1/followRecord.go 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
api/v1/followRecord.go
@@ -208,7 +208,7 @@
        return time.Time{}, err
    }
    tt, err := time.Parse("2006-01-02 15:04:05", t)
    tt, err := time.Parse("2006-01-02T15:04:05.000Z", t)
    if err == nil {
        return tt.In(location), nil
    }