From 1d16278586a1b73d253a5d5749552b6349e106bc Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Mon, 1 Jul 2024 10:22:40 -0700 Subject: [PATCH 1/2] store the group hex instead of the bytearray --- proto/message_contents/private_preferences.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/message_contents/private_preferences.proto b/proto/message_contents/private_preferences.proto index fb278ef..b24a940 100644 --- a/proto/message_contents/private_preferences.proto +++ b/proto/message_contents/private_preferences.proto @@ -42,13 +42,13 @@ message PrivatePreferencesAction { // Allow Group access message AllowGroup { // Add the given group_ids to the allow list - repeated bytes group_ids = 1; + repeated string group_ids = 1; } // Deny (deny) Group access message DenyGroup { // Add the given group_ids to the deny list - repeated bytes group_ids = 1; + repeated string group_ids = 1; } oneof message_type { From 857ccd1328c09136d2a17f09a4d738f10bb2b88f Mon Sep 17 00:00:00 2001 From: Naomi Plasterer Date: Mon, 1 Jul 2024 10:23:42 -0700 Subject: [PATCH 2/2] fix: group storage