A fork of the Cocoon PDS but being made more distributed.
11

Configure Feed

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

fix nil pointer

Hailey (Mar 29, 2025, 6:28 PM -0700) 94f265b7 dd4c78fa

+3 -1
+3 -1
server/handle_repo_apply_writes.go
··· 60 60 return helpers.ServerError(e, nil) 61 61 } 62 62 63 + commit := *results[0].Commit 64 + 63 65 for i := range results { 64 66 results[i].Commit = nil 65 67 } 66 68 67 69 return e.JSON(200, ComAtprotoRepoApplyWritesResponse{ 68 - Commit: *results[0].Commit, 70 + Commit: commit, 69 71 Results: results, 70 72 }) 71 73 }