🤖 Fix a bug
This commit is contained in:
parent
b984aecaf2
commit
0e7fe670aa
|
@ -6,7 +6,8 @@ import { IApp } from '../../models/app';
|
||||||
export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any, file?: any) => new Promise<any>(async (ok, rej) => {
|
export default (endpoint: string | Endpoint, user: IUser, app: IApp, data: any, file?: any) => new Promise<any>(async (ok, rej) => {
|
||||||
const isSecure = user != null && app == null;
|
const isSecure = user != null && app == null;
|
||||||
|
|
||||||
const ep = typeof endpoint == 'string' ? endpoints.find(e => e.name == endpoint) : endpoint;
|
const epName = typeof endpoint === 'string' ? endpoint : endpoint.name;
|
||||||
|
const ep = endpoints.find(e => e.name === epName);
|
||||||
|
|
||||||
if (ep.name.includes('.')) {
|
if (ep.name.includes('.')) {
|
||||||
return rej('INVALID_ENDPOINT');
|
return rej('INVALID_ENDPOINT');
|
||||||
|
|
Loading…
Reference in New Issue