From c500e5d50c2b8296249ef53b09bd535109450fae Mon Sep 17 00:00:00 2001 From: spiral Date: Wed, 1 Dec 2021 17:07:35 -0500 Subject: [PATCH] fix: export system group list privacy --- PluralKit.Core/Models/PKSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PluralKit.Core/Models/PKSystem.cs b/PluralKit.Core/Models/PKSystem.cs index afef0d55..340a3563 100644 --- a/PluralKit.Core/Models/PKSystem.cs +++ b/PluralKit.Core/Models/PKSystem.cs @@ -85,6 +85,7 @@ public static class PKSystemExt ctx == LookupContext.ByOwner ? system.DescriptionPrivacy.ToJsonString() : null); o.Add("member_list_privacy", ctx == LookupContext.ByOwner ? system.MemberListPrivacy.ToJsonString() : null); + o.Add("group_list_privacy", ctx == LookupContext.ByOwner ? system.GroupListPrivacy.ToJsonString() : null); o.Add("front_privacy", ctx == LookupContext.ByOwner ? system.FrontPrivacy.ToJsonString() : null); o.Add("front_history_privacy", ctx == LookupContext.ByOwner ? system.FrontHistoryPrivacy.ToJsonString() : null);