132-view-empty-application-fix #137

Merged
Ajdj100 merged 4 commits from 132-view-empty-application-fix into main 2025-12-30 20:53:12 -06:00
Showing only changes of commit efb5508a8d - Show all commits

View File

@@ -79,9 +79,11 @@ router.get('/me', [requireLogin], async (req, res) => {
try {
let application = await getMemberApplication(userID);
if (application === undefined)
if (application === undefined) {
res.sendStatus(204);
return;
}
const comments: CommentRow[] = await getApplicationComments(application.id);