lib/http/protocol/http2/continuation_frame.rb in http-protocol-0.3.1 vs lib/http/protocol/http2/continuation_frame.rb in http-protocol-0.3.2
- old
+ new
@@ -32,16 +32,16 @@
def end_headers?
flag_set?(END_HEADERS)
end
- def read(io)
+ def read(io, maximum_frame_size)
super
unless end_headers?
@continuation = ContinuationFrame.new
- @continuation.read(io)
+ @continuation.read(io, maximum_frame_size)
end
end
def write(io)
super