Skip to content

Commit

Permalink
fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
VovaStelmashchuk committed Dec 22, 2024
1 parent 273abd9 commit 73432c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { dirname } from "path";

import { initPulse } from "./core/job/init.js";
import { initDatabase } from "./core/client.js";
import { initSyncAudioJobs } from "./core/job/download-audio.js";
import { initSyncAudioJobs } from "./core/job/download-audio.js";

function registerViewFunctions() {
Handlebars.registerHelper("eq", (a, b) => a === b);
Expand Down Expand Up @@ -73,7 +73,6 @@ const init = async () => {

process.on("unhandledRejection", (err) => {
console.info(err);
process.exit(1);
});

init().then(() => console.log("Server started"));

0 comments on commit 73432c2

Please sign in to comment.