We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5492582 commit 8eb0a0aCopy full SHA for 8eb0a0a
api/internal/features/extension/storage/storage.go
@@ -216,6 +216,10 @@ func (s *ExtensionStorage) ListExtensions(params types.ExtensionListParams) (*ty
216
217
totalPages := (total + params.PageSize - 1) / params.PageSize
218
219
+ if len(extensions) == 0 {
220
+ extensions = make([]types.Extension, 0)
221
+ }
222
+
223
return &types.ExtensionListResponse{
224
Extensions: extensions,
225
Total: total,
0 commit comments