[Server] toLowerCase ✌️
This commit is contained in:
		
							parent
							
								
									b0e8cc3595
								
							
						
					
					
						commit
						48e7f76b2b
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -22,7 +22,7 @@ export interface IAuthContext { | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| export default (req: express.Request) => new Promise<IAuthContext>(async (resolve, reject) => { | export default (req: express.Request) => new Promise<IAuthContext>(async (resolve, reject) => { | ||||||
| 	const token = req.body['i']; | 	const token = req.body['i'] as string; | ||||||
| 
 | 
 | ||||||
| 	if (token == null) { | 	if (token == null) { | ||||||
| 		return resolve({ app: null, user: null, isSecure: false }); | 		return resolve({ app: null, user: null, isSecure: false }); | ||||||
|  | @ -43,7 +43,7 @@ export default (req: express.Request) => new Promise<IAuthContext>(async (resolv | ||||||
| 		}); | 		}); | ||||||
| 	} else { | 	} else { | ||||||
| 		const accessToken = await AccessToken.findOne({ | 		const accessToken = await AccessToken.findOne({ | ||||||
| 			hash: token | 			hash: token.toLowerCase() | ||||||
| 		}); | 		}); | ||||||
| 
 | 
 | ||||||
| 		if (accessToken === null) { | 		if (accessToken === null) { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue