From 2dd9a080c6a13692d7c5d13f09a7f13c37b46b12 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 10 May 2025 07:34:06 +0530 Subject: [PATCH] Enable sharing for fav --- server/ente/collection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/ente/collection.go b/server/ente/collection.go index 9b9a0759d9..25470d72fd 100644 --- a/server/ente/collection.go +++ b/server/ente/collection.go @@ -38,7 +38,7 @@ func (c *Collection) AllowSharing() bool { if c == nil { return false } - if c.Type == "favorites" || c.Type == "uncategorized" { + if c.Type == "uncategorized" { return false } return true