UserScript: Fix cors check
This commit is contained in:
		
							parent
							
								
									c4a3d25d37
								
							
						
					
					
						commit
						40a7aa5079
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -59,8 +59,8 @@ async function checkCors(url, method) { | |||
|     const origin = headers["access-control-allow-origin"]; | ||||
|     if (origin !== "*" && origin !== window.location.origin) return false; | ||||
| 
 | ||||
|     const methods = headers["access-control-allow-methods"]?.split(/,\s/g); | ||||
|     if (methods && !methods.includes(method)) return false; | ||||
|     const methods = headers["access-control-allow-methods"]?.toLowerCase().split(/,\s/g); | ||||
|     if (methods && !methods.includes(method.toLowerCase())) return false; | ||||
| 
 | ||||
|     return true; | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue