Skip to content

Commit 7119e48

Browse files
committed
Fix oversight of group cloud home template not being disablable
1 parent 283758e commit 7119e48

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

CommunityBugFixCollection/GroupCloudHomeTemplate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private static void Prefix(ref OwnerType ownerType)
2222
{
2323
// The template URL for group homes currently does not resolve.
2424
// We change the owner type to User, so that we can create a group home with the standard cloud home template.
25-
if (ownerType == OwnerType.Group)
25+
if (Enabled && ownerType == OwnerType.Group)
2626
ownerType = OwnerType.User;
2727
}
2828
}

0 commit comments

Comments
 (0)