ref #1044 Does this fix ow case sensitive search?
This commit is contained in:
		@@ -20,7 +20,7 @@ namespace NadekoBot.Modules.Searches
 | 
				
			|||||||
            {
 | 
					            {
 | 
				
			||||||
                if (string.IsNullOrWhiteSpace(query))
 | 
					                if (string.IsNullOrWhiteSpace(query))
 | 
				
			||||||
                    return;
 | 
					                    return;
 | 
				
			||||||
                var battletag = Regex.Replace(query, "#", "-", RegexOptions.IgnoreCase);
 | 
					                var battletag = Regex.Replace(query, "#", "-");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                await Context.Channel.TriggerTypingAsync().ConfigureAwait(false);
 | 
					                await Context.Channel.TriggerTypingAsync().ConfigureAwait(false);
 | 
				
			||||||
                try
 | 
					                try
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user