mirror of
				https://github.com/nsnail/Ocelot.git
				synced 2025-11-04 15:30:49 +08:00 
			
		
		
		
	Merge pull request #97 from juancash/case-sensitive-routing-fix
Updated CharactersDontMatch method
This commit is contained in:
		@@ -70,7 +70,7 @@ namespace Ocelot.DownstreamRouteFinder.UrlMatcher
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        private bool CharactersDontMatch(char characterOne, char characterTwo)
 | 
					        private bool CharactersDontMatch(char characterOne, char characterTwo)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            return characterOne != characterTwo;
 | 
					            return char.ToLower(characterOne) != char.ToLower(characterTwo);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        private bool ContinueScanningUrl(int counterForUrl, int urlLength)
 | 
					        private bool ContinueScanningUrl(int counterForUrl, int urlLength)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user