From dfc85c59137c131ebe47b20210761868a1c7071a Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 9 Mar 2025 13:36:12 +0800 Subject: [PATCH] :bug: Fix panic on get status from cache --- pkg/internal/services/statuses.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/internal/services/statuses.go b/pkg/internal/services/statuses.go index 15f70d5..7ba9099 100644 --- a/pkg/internal/services/statuses.go +++ b/pkg/internal/services/statuses.go @@ -3,9 +3,10 @@ package services import ( "context" "fmt" + "time" + "git.solsynth.dev/hypernet/nexus/pkg/proto" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" - "time" localCache "git.solsynth.dev/hypernet/passport/pkg/internal/cache" "git.solsynth.dev/hypernet/passport/pkg/internal/gap" @@ -27,11 +28,11 @@ func GetStatus(uid uint) (models.Status, error) { contx := context.Background() if val, err := marshal.Get(contx, GetStatusCacheKey(uid), new(models.Status)); err == nil { - status := val.(models.Status) + status := val.(*models.Status) if status.ClearAt != nil && status.ClearAt.Before(time.Now()) { marshal.Delete(contx, GetStatusCacheKey(uid)) } else { - return status, nil + return *status, nil } } var status models.Status