notedeck

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

commit 86641c6121862abed8e3c4354a0add6a3ea61505
parent 77ac91e810b82ac05e74d9219861822d277359d2
Author: kernelkind <kernelkind@gmail.com>
Date:   Tue, 19 Aug 2025 15:05:28 -0400

use the onboarding follow pack curator pubkey

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] = [ - 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, + 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, ]; 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(["trusted-follow-pack-authors"], 'd') // TODO(kernelkind): replace with actual d tag + .tags(["trusted-follow-pack-authors"], 'd') .build() }