fix (backend): typo

This commit is contained in:
naskya 2024-05-20 20:10:42 +09:00
parent ef0c3a0ae2
commit b87351673c
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
2 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@ import {
Polls,
Channels,
Notes,
ScheduledNote,
ScheduledNotes,
} from "../index.js";
import type { Packed } from "@/misc/schema.js";
import { countReactions, decodeReaction, nyaify } from "backend-rs";
@ -202,7 +202,7 @@ export const NoteRepository = db.getRepository(Note).extend({
let scheduledAt: string | undefined;
if (note.visibility === "specified" && note.visibleUserIds.length === 0) {
scheduledAt = (
await ScheduledNote.findOneBy({
await ScheduledNotes.findOneBy({
noteId: note.id,
})
)?.scheduledAt?.toISOString();

View file

@ -7,7 +7,7 @@ import {
Notes,
Channels,
Blockings,
ScheduledNote,
ScheduledNotes,
} from "@/models/index.js";
import type { DriveFile } from "@/models/entities/drive-file.js";
import type { Note } from "@/models/entities/note.js";
@ -346,7 +346,7 @@ export default define(meta, paramDef, async (ps, user) => {
false,
delay
? async (note) => {
await ScheduledNote.insert({
await ScheduledNotes.insert({
id: genId(),
noteId: note.id,
userId: user.id,