upd: remove accidental additions

This commit is contained in:
Mar0xy 2023-11-30 04:05:11 +01:00
parent fcbb291ef1
commit 9383e3affd
No known key found for this signature in database
GPG Key ID: 56569BBE47D2C828
2 changed files with 2 additions and 5 deletions

View File

@ -171,7 +171,7 @@ export class ApRendererService {
mediaType: file.webpublicType ?? file.type,
url: this.driveFileEntityService.getPublicUrl(file),
name: file.comment,
description: file.comment,
summary: file.comment,
};
}
@ -747,7 +747,6 @@ export class ApRendererService {
summary: summary ?? undefined,
content: content ?? undefined,
updated: note.updatedAt?.toISOString(),
edited_at: note.updatedAt?.toISOString(),
_misskey_content: text,
source: {
content: text,

View File

@ -11,7 +11,7 @@ export interface IObject {
type: string | string[];
id?: string;
name?: string | null;
summary?: string;
summary?: string | null;
_misskey_summary?: string;
published?: string;
cc?: ApObject;
@ -121,7 +121,6 @@ export interface IPost extends IObject {
quoteUrl?: string;
quoteUri?: string;
updated?: string;
edited_at?: string;
}
export interface IQuestion extends IObject {
@ -250,7 +249,6 @@ export interface IApDocument extends IObject {
type: 'Document';
name: string | null;
mediaType: string;
description: string | null;
}
export interface IApImage extends IObject {