Skip to content
Open
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 main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ app.whenReady().then(() => {

const rawProfileName = path.basename(filePath, ".json");
if (!isValidProfileName(rawProfileName)) {
return { success: false, error: "Invalid profile name: the filename contains reserved or disallowed characters." };
return { success: false, error: "Invalid profile name: The filename contains unsupported characters. Please rename the file using only letters, numbers, spaces, hyphens, underscores, and parentheses (maximum 64 characters)." };
}
const profileName = rawProfileName;
const profiles = settingsStore.loadProfiles();
Expand Down
Loading