🐛 Fix the wrong asset base url in ap controller
This commit is contained in:
@@ -43,7 +43,7 @@ public class ActivityPubController(
|
|||||||
var outboxUrl = $"{actorUrl}/outbox";
|
var outboxUrl = $"{actorUrl}/outbox";
|
||||||
var followersUrl = $"{actorUrl}/followers";
|
var followersUrl = $"{actorUrl}/followers";
|
||||||
var followingUrl = $"{actorUrl}/following";
|
var followingUrl = $"{actorUrl}/following";
|
||||||
var assetsBaseUrl = configuration["AssetsServerBaseUrl"] ?? $"https://{Domain}/files";
|
var assetsBaseUrl = configuration["ActivityPub:FileBaseUrl"] ?? $"https://{Domain}/files";
|
||||||
|
|
||||||
var publicKeyPem = await GetPublicKeyAsync(publisher);
|
var publicKeyPem = await GetPublicKeyAsync(publisher);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user