From d074520c302be2f5dfb53af57b19bcbcc7d42b2c Mon Sep 17 00:00:00 2001 From: anthonyrawlins Date: Sun, 28 Sep 2025 14:10:06 +1000 Subject: [PATCH] fix: convert access level to string via helper --- pkg/slurp/storage/local_storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/slurp/storage/local_storage.go b/pkg/slurp/storage/local_storage.go index 4530916..440a894 100644 --- a/pkg/slurp/storage/local_storage.go +++ b/pkg/slurp/storage/local_storage.go @@ -141,7 +141,7 @@ func (ls *LocalStorageImpl) Store( if options != nil { entry.TTL = options.TTL entry.Compressed = options.Compress - entry.AccessLevel = string(options.AccessLevel) + entry.AccessLevel = options.AccessLevel.String() // Copy metadata for k, v := range options.Metadata {