From f7e17180e7051925503b94c5a2e8bee010e84de4 Mon Sep 17 00:00:00 2001 From: Ben Pate Date: Tue, 10 Sep 2024 14:49:32 -0600 Subject: [PATCH] Hotfix --- build/builder_stream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/builder_stream.go b/build/builder_stream.go index 2d17f1f6..723b594a 100644 --- a/build/builder_stream.go +++ b/build/builder_stream.go @@ -760,7 +760,7 @@ func (w Stream) Attachments() (sliceof.Object[model.Attachment], error) { } // AttachmentByType lists all attachments for this stream. -func (w Stream) AttachmentByCategory(category string) (sliceof.Object[model.Attachment], error) { +func (w Stream) AttachmentsByCategory(category string) (sliceof.Object[model.Attachment], error) { return w.factory().Attachment().QueryByCategory(model.AttachmentObjectTypeStream, w._stream.StreamID, category) }