Browse Source

refactor: changed song title requirements to allow any YouTube video title

Kristian Vos 5 years ago
parent
commit
8f3ade77d0
2 changed files with 5 additions and 5 deletions
  1. 1 1
      backend/logic/db/index.js
  2. 4 4
      frontend/components/Modals/EditSong.vue

+ 1 - 1
backend/logic/db/index.js

@@ -127,7 +127,7 @@ let lib = {
 				*/
 	
 				let songTitle = (title) => {
-					return (isLength(title, 1, 64) && regex.ascii.test(title));
+					return isLength(title, 1, 100);
 				};
 				lib.schemas.song.path('title').validate(songTitle, 'Invalid title.');
 				lib.schemas.queueSong.path('title').validate(songTitle, 'Invalid title.');

+ 4 - 4
frontend/components/Modals/EditSong.vue

@@ -339,16 +339,16 @@ export default {
 			}
 
 			// Title
-			if (!validation.isLength(song.title, 1, 64))
+			if (!validation.isLength(song.title, 1, 100))
 				return Toast.methods.addToast(
-					"Title must have between 1 and 64 characters.",
+					"Title must have between 1 and 100 characters.",
 					8000
 				);
-			if (!validation.regex.ascii.test(song.title))
+			/*if (!validation.regex.ascii.test(song.title))
 				return Toast.methods.addToast(
 					"Invalid title format. Only ascii characters are allowed.",
 					8000
-				);
+				);*/
 
 			// Artists
 			if (song.artists.length < 1 || song.artists.length > 10)