mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 16:43:09 +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 {
|
||||
id: 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),
|
||||
in_reply_to_id: n.replyId,
|
||||
in_reply_to_account_id: null,
|
||||
|
|
|
@ -23,6 +23,7 @@ namespace MisskeyEntity {
|
|||
replyId: string | null
|
||||
renoteId: string | null
|
||||
uri?: string
|
||||
url?: string
|
||||
reply?: Note
|
||||
renote?: Note
|
||||
viaMobile?: boolean
|
||||
|
|
Loading…
Reference in a new issue