We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 14cfd8d + c05bad8 commit 1da4849Copy full SHA for 1da4849
options/locale/locale_zh-CN.ini
@@ -443,6 +443,7 @@ size_error=长度必须为 %s。
443
min_size_error=长度最小为 %s 个字符。
444
max_size_error=长度最大为 %s 个字符。
445
email_error=不是一个有效的邮箱地址。
446
+url_error=`'%s' 不是一个有效的 URL。`
447
include_error=`必须包含子字符串 '%s'。`
448
glob_pattern_error=`匹配模式无效:%s.`
449
regex_pattern_error=`正则表达式无效:%s.`
routers/api/v1/activitypub/person.go
@@ -59,9 +59,7 @@ func Person(ctx *context.APIContext) {
59
URL: ap.IRI(ctx.ContextUser.AvatarLink()),
60
}
61
62
- person.Inbox = nil
63
person.Inbox, _ = ap.Inbox.AddTo(person)
64
- person.Outbox = nil
65
person.Outbox, _ = ap.Outbox.AddTo(person)
66
67
person.PublicKey.ID = ap.IRI(link + "#main-key")
0 commit comments