mirror of
				https://gitea.invidious.io/iv-org/shard-kemal.git
				synced 2024-08-15 00:53:36 +00:00 
			
		
		
		
	Remove unnecessary check
This commit is contained in:
		
							parent
							
								
									17fe691710
								
							
						
					
					
						commit
						7f198cab3b
					
				
					 1 changed files with 3 additions and 5 deletions
				
			
		| 
						 | 
				
			
			@ -6,7 +6,6 @@ class Kemal::Handler < HTTP::Handler
 | 
			
		|||
 | 
			
		||||
  def initialize
 | 
			
		||||
    @routes = [] of Route
 | 
			
		||||
    @match = false
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  def call(request)
 | 
			
		||||
| 
						 | 
				
			
			@ -21,7 +20,7 @@ class Kemal::Handler < HTTP::Handler
 | 
			
		|||
  def process_request(request)
 | 
			
		||||
    @routes.each do |route|
 | 
			
		||||
      match = route.match?(request)
 | 
			
		||||
      if @match = match
 | 
			
		||||
      if match
 | 
			
		||||
        params = Kemal::ParamParser.new(route, request).parse
 | 
			
		||||
        context = Context.new(request, params)
 | 
			
		||||
        begin
 | 
			
		||||
| 
						 | 
				
			
			@ -32,9 +31,8 @@ class Kemal::Handler < HTTP::Handler
 | 
			
		|||
        end
 | 
			
		||||
      end
 | 
			
		||||
    end
 | 
			
		||||
    unless @match
 | 
			
		||||
      return render_404
 | 
			
		||||
    end
 | 
			
		||||
    # Render 404 unless a route matches
 | 
			
		||||
    return render_404
 | 
			
		||||
    nil
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue