From 939f460ceb49f46a3bfc259dd5e17cc23710077b Mon Sep 17 00:00:00 2001 From: David Christofas Date: Thu, 5 Aug 2021 16:04:05 +0200 Subject: [PATCH] fix updating shares in the memory share manager --- pkg/share/manager/memory/memory.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/share/manager/memory/memory.go b/pkg/share/manager/memory/memory.go index 6b6c3e5b4c9..75a4f6d14dc 100644 --- a/pkg/share/manager/memory/memory.go +++ b/pkg/share/manager/memory/memory.go @@ -328,5 +328,7 @@ func (m *manager) UpdateReceivedShare(ctx context.Context, ref *collaboration.Sh } m.shareState[user.Id.String()] = a } + + rs.State = f.GetState() return rs, nil }