File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ namespace MastodonAPI {
630630 emoji_reactions : [ ] ,
631631 bookmarked : s . bookmarked ? s . bookmarked : false ,
632632 quote : s . quote ? quote ( s . quote ) : null ,
633- quote_approval : s . quote_approval
633+ quote_approval : s . quote_approval ?? { automatic : [ ] , manual : [ ] , current_user : 'unknown' }
634634 } )
635635 export const status_params = ( s : Entity . StatusParams ) : MegalodonEntity . StatusParams => s
636636 export const status_source = ( s : Entity . StatusSource ) : MegalodonEntity . StatusSource => s
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export type Status = {
3838 language : string | null
3939 pinned : boolean | null
4040 quote : QuotedStatus | null
41- quote_approval : QuoteApproval
41+ quote_approval ? : QuoteApproval
4242 bookmarked ?: boolean
4343}
4444
You can’t perform that action at this time.
0 commit comments