Template
1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo synced 2024-11-22 09:54:24 +01:00

Use actionsUser for creating http client

This commit is contained in:
erik 2023-12-05 14:50:46 +01:00 committed by Michael Jerger
parent d65e5aa70e
commit 68cc74d139

View file

@ -176,7 +176,7 @@ func RepositoryInbox(ctx *context.APIContext) {
// make http client
// TODO: this should also work without autorizing the api call // doer might be empty
host := activity.To.GetID().String()
client, err := api.NewClient(ctx, ctx.Doer, host) // ToDo: This is hacky, we need a hostname from somewhere
client, err := api.NewClient(ctx, actionsUser, host) // ToDo: This is hacky, we need a hostname from somewhere
if err != nil {
panic(err)
}