Don't bail early if empty token provided from UI

5145e30be3c29d08533f57440afaa201edecedce

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
src/endpoints/chats.js+1 -1
@@ -319,7 +319,7 @@ function readFirstLine(filePath) {
319319 */
320320async function checkChatIntegrity(filePath, integritySlug) {
321321 // If the chat file doesn't exist, assume it's intact
322322 if (!integritySlug || !fs.existsSync(filePath)) {
323323 return true;
324324 }
325325