From 303bd04649f9b2fae1f87f83d5463d0310925a09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Mon, 29 Apr 2024 17:24:10 +0200 Subject: [PATCH] v0.0.442 --- goextVersion.go | 4 ++-- wmo/queryList.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/goextVersion.go b/goextVersion.go index cd6c4d1..4903e4b 100644 --- a/goextVersion.go +++ b/goextVersion.go @@ -1,5 +1,5 @@ package goext -const GoextVersion = "0.0.441" +const GoextVersion = "0.0.442" -const GoextVersionTimestamp = "2024-04-29T17:19:55+0200" +const GoextVersionTimestamp = "2024-04-29T17:24:10+0200" diff --git a/wmo/queryList.go b/wmo/queryList.go index e93a7a0..afc8e8d 100644 --- a/wmo/queryList.go +++ b/wmo/queryList.go @@ -168,7 +168,7 @@ func (c *Coll[TData]) ListAllIDs(ctx context.Context, filter ct.RawFilter) ([]st var res []idObject - err = cursorList.All(ctx, res) + err = cursorList.All(ctx, &res) if err != nil { return nil, exerr.Wrap(err, "failed to decode entities").Any("pipeline", pipelineList).Str("collection", c.Name()).Build() }