4.3.2 release (#929)

* Upgraded version to 4.3.2
* Prevent null userid/username registration
pull/932/head v4.3.2
Tzahi12345 2 years ago committed by GitHub
parent 2c61260e0f
commit 6eadb37532
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1946,6 +1946,10 @@ app.post('/api/auth/register', optionalJwt, async (req, res) => {
return;
}
if (!userid || !username) {
logger.error(`Registration failed for user ${userid}. Username or userid is invalid.`);
}
const new_user = await auth_api.registerUser(userid, username, plaintextPassword);
if (!new_user) {

@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "4.3.1"
appVersion: "4.3.2"

@ -1,6 +1,6 @@
{
"name": "youtube-dl-material",
"version": "4.3.1",
"version": "4.3.2",
"license": "MIT",
"scripts": {
"ng": "ng",

@ -1 +1 @@
export const CURRENT_VERSION = 'v4.3.1';
export const CURRENT_VERSION = 'v4.3.2';

Loading…
Cancel
Save