A container registry that uses the AT Protocol for manifest storage and S3 for blob storage. atcr.io
docker container atproto go
80
fork

Configure Feed

Select the types of activity you want to include in your feed.

show TIDs in correct order on pds calls

+3 -3
+3 -3
pkg/hold/pds/xrpc.go
··· 607 607 } 608 608 } 609 609 610 - // Handle reverse order if requested 611 - if reverse && len(records) > 0 { 612 - // Reverse the slice 610 + // Default order is newest-first (reverse chronological), which requires 611 + // reversing the MST's lexicographic order. When reverse=true, keep MST order. 612 + if !reverse && len(records) > 0 { 613 613 for i, j := 0, len(records)-1; i < j; i, j = i+1, j-1 { 614 614 records[i], records[j] = records[j], records[i] 615 615 }