From 953141801079402d92351a75c0455d67569dce5d Mon Sep 17 00:00:00 2001 From: choibk Date: Sun, 25 Jan 2026 01:57:24 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=EC=8B=B1=20=EB=A1=9C=EC=A7=81=20?= =?UTF-8?q?=EB=B3=B4=EC=A0=95:=20BUILD=20=ED=83=80=EC=9E=85=20=EC=9D=B8?= =?UTF-8?q?=EC=8B=9D=20=EA=B8=B0=EB=8A=A5=20=EC=B6=94=EA=B0=80=20(v0.4.0.1?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/routes/system.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/routes/system.js b/server/routes/system.js index 5da1139..cbfde67 100644 --- a/server/routes/system.js +++ b/server/routes/system.js @@ -506,11 +506,12 @@ router.get('/version/remote', isAuthenticated, hasRole('admin'), async (req, res let type = 'patch'; let title = subject || ''; - const typeMatch = (subject || '').match(/^\[(URGENT|FEATURE|FIX|PATCH|HOTFIX)\]\s*(.*)$/i); + const typeMatch = (subject || '').match(/^\[(URGENT|FEATURE|FIX|PATCH|HOTFIX|BUILD)\]\s*(.*)$/i); if (typeMatch) { const rawType = typeMatch[1].toUpperCase(); if (rawType === 'URGENT' || rawType === 'HOTFIX') type = 'urgent'; else if (rawType === 'FEATURE') type = 'feature'; + else if (rawType === 'BUILD') type = 'patch'; else type = 'fix'; title = typeMatch[2]; }