mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 23:25:24 +02:00
upd: megalodon changes
This commit is contained in:
parent
c85857f242
commit
846f2d3877
2 changed files with 2 additions and 1 deletions
|
@ -252,7 +252,7 @@ namespace MisskeyAPI {
|
||||||
return {
|
return {
|
||||||
id: n.id,
|
id: n.id,
|
||||||
uri: n.uri ? n.uri : host ? `https://${host}/notes/${n.id}` : '',
|
uri: n.uri ? n.uri : host ? `https://${host}/notes/${n.id}` : '',
|
||||||
url: n.uri ? n.uri : host ? `https://${host}/notes/${n.id}` : '',
|
url: n.url ? n.url : host ? `https://${host}/notes/${n.id}` : '',
|
||||||
account: user(n.user, host ? host : null),
|
account: user(n.user, host ? host : null),
|
||||||
in_reply_to_id: n.replyId,
|
in_reply_to_id: n.replyId,
|
||||||
in_reply_to_account_id: null,
|
in_reply_to_account_id: null,
|
||||||
|
|
|
@ -23,6 +23,7 @@ namespace MisskeyEntity {
|
||||||
replyId: string | null
|
replyId: string | null
|
||||||
renoteId: string | null
|
renoteId: string | null
|
||||||
uri?: string
|
uri?: string
|
||||||
|
url?: string
|
||||||
reply?: Note
|
reply?: Note
|
||||||
renote?: Note
|
renote?: Note
|
||||||
viaMobile?: boolean
|
viaMobile?: boolean
|
||||||
|
|
Loading…
Reference in a new issue