Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PORT=8080
PORT=8090
JWT_SECRET="JACKSONCHENNAHEULALLEN"
SALT_ROUNDS=123
2 changes: 1 addition & 1 deletion backend/src/downloader/universal-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function checkAndDownloadAllModels(

logger.log('Checking and downloading configured models...');

if (!modelsConfig.length) {
if (!modelsConfig || !modelsConfig.length) {
logger.warn(`No ${type} models configured`);
return;
}
Expand Down
Loading