This commit is contained in:
Matteo Gheza 2022-01-05 12:24:51 +01:00
commit c2dd7dc767
7 changed files with 14 additions and 14 deletions

View File

@ -11,7 +11,7 @@
],
"require": {
"delight-im/auth": "dev-master",
"ulrichsg/getopt-php": "4.0.0",
"ulrichsg/getopt-php": "4.0.1",
"nikic/fast-route": "^2.0@dev",
"spatie/array-to-xml": "3.1.0",
"ezyang/htmlpurifier": "4.14.0",

18
backend/composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "c24f492bcd977f01ae44c4ee0c7ae1e4",
"content-hash": "9193956804bd765f7fe3f29d0c61472e",
"packages": [
{
"name": "azuyalabs/yasumi",
@ -3107,16 +3107,16 @@
},
{
"name": "ulrichsg/getopt-php",
"version": "v4.0.0",
"version": "v4.0.1",
"source": {
"type": "git",
"url": "https://github.com/getopt-php/getopt-php.git",
"reference": "073e809a5a4811b0caec43a2151b0e8ccbe29e4b"
"reference": "ad9e8cdf1b709caf84ca545ff90bcc7298f0fa5a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/getopt-php/getopt-php/zipball/073e809a5a4811b0caec43a2151b0e8ccbe29e4b",
"reference": "073e809a5a4811b0caec43a2151b0e8ccbe29e4b",
"url": "https://api.github.com/repos/getopt-php/getopt-php/zipball/ad9e8cdf1b709caf84ca545ff90bcc7298f0fa5a",
"reference": "ad9e8cdf1b709caf84ca545ff90bcc7298f0fa5a",
"shasum": ""
},
"require": {
@ -3147,13 +3147,13 @@
"email": "thflori@gmail.com"
}
],
"description": "Command line arguments parser for PHP 5.4 - 7.3",
"description": "Command line arguments parser for PHP 7.1 and above",
"homepage": "http://getopt-php.github.io/getopt-php",
"support": {
"issues": "https://github.com/getopt-php/getopt-php/issues",
"source": "https://github.com/getopt-php/getopt-php/tree/v4.0.0"
"source": "https://github.com/getopt-php/getopt-php/tree/v4.0.1"
},
"time": "2021-05-02T13:05:10+00:00"
"time": "2022-01-04T11:01:04+00:00"
}
],
"packages-dev": [
@ -3265,5 +3265,5 @@
"prefer-lowest": false,
"platform": [],
"platform-dev": [],
"plugin-api-version": "2.1.0"
"plugin-api-version": "2.2.0"
}

View File

@ -77,14 +77,14 @@ export class AuthService {
});
}).catch((err) => {
let error_message = "";
if(err.status == 401) {
if(err.status === 401) {
error_message = err.error.message;
} else if (err.status = 400) {
} else if (err.status === 400) {
let error_messages = err.error.errors;
error_message = error_messages.map((val: any) => {
return `${val.msg} in ${val.param}`;
}).join(" & ");
} else if (err.status = 500) {
} else if (err.status === 500) {
error_message = "Server error";
} else {
error_message = "Unknown error";
@ -105,4 +105,4 @@ export class AuthService {
}
this.router.navigate(routerDestination);
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 419 B