+3
-1
server/handle_repo_apply_writes.go
+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
}