fix(server): imports in migration not working

This commit is contained in:
Elian Doran 2025-04-28 10:19:51 +03:00
parent d74b8e65bd
commit 05a61ebd29
No known key found for this signature in database
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
import sql from "../../src/services/sql";
import utils from "../../src/services/utils";
import sql from "../../../services/sql.js";
import utils from "../../../services/utils.js";
interface NoteContentsRow {
noteId: string;

View File

@ -1,8 +1,8 @@
import becca from "../../src/becca/becca";
import becca_loader from "../../src/becca/becca_loader";
import cls from "../../src/services/cls";
import log from "../../src/services/log";
import sql from "../../src/services/sql";
import becca from "../../../becca/becca.js";
import becca_loader from "../../../becca/becca_loader.js";
import cls from "../../../services/cls.js";
import log from "../../../services/log.js";
import sql from "../../../services/sql.js";
export default () => {
cls.init(() => {
@ -18,7 +18,7 @@ export default () => {
if (attachment) {
log.info(`Auto-converted note '${note.noteId}' into attachment '${attachment.attachmentId}'.`);
}
} catch (e) {
} catch (e: any) {
log.error(`Cannot convert note '${note.noteId}' to attachment: ${e.message} ${e.stack}`);
}
}