commit 2c96dd99a865b4262e703d165a7d96cba84b0f77
parent e7843bad2f3850fd92943ee133c058e571752667
Author: William Casarin <jb55@jb55.com>
Date: Tue, 26 Aug 2025 10:01:09 -0700
Merge remote-tracking branch 'github/pr/1081' into notifications
especially if it merges an updated upstream into a topic branch.
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/crates/notedeck_columns/src/onboarding.rs b/crates/notedeck_columns/src/onboarding.rs
@@ -111,8 +111,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 {
@@ -120,7 +120,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()
}