[API] Improve: Better error message
This commit is contained in:
		@@ -47,7 +47,7 @@ export default (req: express.Request) => new Promise<IAuthContext>(async (resolv
 | 
			
		||||
		});
 | 
			
		||||
 | 
			
		||||
		if (accessToken === null) {
 | 
			
		||||
			return reject('invalid token');
 | 
			
		||||
			return reject('invalid signature');
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		const app = await App
 | 
			
		||||
 
 | 
			
		||||
@@ -68,7 +68,7 @@ function authenticate(connection: websocket.connection, token: string): Promise<
 | 
			
		||||
			});
 | 
			
		||||
 | 
			
		||||
			if (accessToken == null) {
 | 
			
		||||
				return reject('invalid token');
 | 
			
		||||
				return reject('invalid signature');
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
			// Fetch user
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user