1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #6513 from gnattu/check-invalid-library-name

Don't allow library name with leading or trailing space
This commit is contained in:
Bill Thornton 2025-02-14 15:42:25 -05:00 committed by GitHub
commit 0bb06f18d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -45,6 +45,18 @@ function onAddLibrary(e) {
const name = dlg.querySelector('#txtValue').value; const name = dlg.querySelector('#txtValue').value;
let type = dlg.querySelector('#selectCollectionType').value; let type = dlg.querySelector('#selectCollectionType').value;
if (name.length == 0 || name.trim().length !== name.length) {
alert({
text: globalize.translate('LibraryNameInvalid'),
type: 'error'
});
isCreating = false;
loading.hide();
return false;
}
if (type == 'mixed') { if (type == 'mixed') {
type = null; type = null;
} }

View file

@ -1015,6 +1015,7 @@
"LeaveBlankToNotSetAPassword": "You can leave this field blank to set no password.", "LeaveBlankToNotSetAPassword": "You can leave this field blank to set no password.",
"Letterer": "Letterer", "Letterer": "Letterer",
"LibraryAccessHelp": "Select the libraries to share with this user. Administrators will be able to edit all folders using the metadata manager.", "LibraryAccessHelp": "Select the libraries to share with this user. Administrators will be able to edit all folders using the metadata manager.",
"LibraryNameInvalid": "Library name cannot be empty or have leading/trailing spaces.",
"LibraryScanFanoutConcurrency": "Parallel library scan tasks limit", "LibraryScanFanoutConcurrency": "Parallel library scan tasks limit",
"LibraryScanFanoutConcurrencyHelp": "Maximum number of parallel tasks during library scans. Setting this to 0 will choose a limit based on your systems core count. WARNING: Setting this number too high may cause issues with network file systems; if you encounter problems lower this number.", "LibraryScanFanoutConcurrencyHelp": "Maximum number of parallel tasks during library scans. Setting this to 0 will choose a limit based on your systems core count. WARNING: Setting this number too high may cause issues with network file systems; if you encounter problems lower this number.",
"LibraryInvalidItemIdError": "The library is in an invalid state and cannot be edited. You are possibly encountering a bug: the path in the database is not the correct path on the filesystem.", "LibraryInvalidItemIdError": "The library is in an invalid state and cannot be edited. You are possibly encountering a bug: the path in the database is not the correct path on the filesystem.",