We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
warning: assigned but unused variable - extensions
1 parent 8053f4c commit b14df9cCopy full SHA for b14df9c
.mailmap
@@ -0,0 +1 @@
1
+Thomas Morgan <tm@iprog.com>
lib/protocol/http1/body/chunked.rb
@@ -41,7 +41,7 @@ def close(error = nil)
41
def read
42
return nil if @finished
43
44
- length, extensions = read_line.split(";", 2)
+ length, _extensions = read_line.split(";", 2)
45
46
unless length =~ VALID_CHUNK_LENGTH
47
raise BadRequest, "Invalid chunk length: #{length.dump}"
0 commit comments