UUID switching, and add new message button fix #96

Merged
bema merged 12 commits from widlam/feature/issue#76 into master 2023-03-06 11:54:42 +01:00
Showing only changes of commit 32783561c5 - Show all commits

View File

@@ -281,7 +281,7 @@ async function fetchUUIDCheck(givenUUID , strategy){
function checkUUIDChars(uuid) {
console.log("UUID in check: " + uuid);
const regex = new RegExp("/^[A-z0-9-]+$/");
const regex = new RegExp("^[A-z0-9-]+$");
if(regex.test(uuid)){
return uuid ;
}