notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 8d4c0cfdbeda2b206b4cb76e12fc5457dd186478
parent f8f720c19325d92d7dbbdae2b9e00ced29e154de
Author: kernelkind <kernelkind@gmail.com>
Date:   Thu,  7 Aug 2025 12:25:51 -0400

TMP: temporary author for trusted pks list

Signed-off-by: kernelkind <kernelkind@gmail.com>

Diffstat:
Mcrates/notedeck_columns/src/onboarding.rs | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/crates/notedeck_columns/src/onboarding.rs b/crates/notedeck_columns/src/onboarding.rs @@ -107,8 +107,8 @@ pub enum OnboardingError { // author providing the list of trusted follow pack authors const FOLLOW_PACK_AUTHOR: [u8; 32] = [ - 0x89, 0x5c, 0x2a, 0x90, 0xa8, 0x60, 0xac, 0x18, 0x43, 0x4a, 0xa6, 0x9e, 0x7b, 0x0d, 0xa8, 0x46, - 0x57, 0x21, 0x21, 0x6f, 0xa3, 0x6e, 0x42, 0xc0, 0x22, 0xe3, 0x93, 0x57, 0x9c, 0x48, 0x6c, 0xba, + 0x34, 0x27, 0x76, 0x21, 0x61, 0x20, 0x15, 0x65, 0x49, 0x7d, 0xd9, 0x9c, 0x7a, 0x81, 0xd6, 0x11, + 0x8f, 0x46, 0xf6, 0x19, 0xc9, 0xec, 0x56, 0x32, 0x87, 0x05, 0xcc, 0x85, 0x07, 0x17, 0xa5, 0x4a, ]; fn trusted_pks_list_filter() -> Filter { @@ -116,7 +116,7 @@ fn trusted_pks_list_filter() -> Filter { .kinds([30000]) .limit(1) .authors(&[FOLLOW_PACK_AUTHOR]) - .tags(["test"], 'd') // TODO(kernelkind): replace with actual d tag + .tags(["trusted-follow-pack-authors"], 'd') // TODO(kernelkind): replace with actual d tag .build() }