We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732f9bb commit bff33bbCopy full SHA for bff33bb
lib/debug/server_cdp.rb
@@ -421,7 +421,7 @@ def extract_data
421
first_group = @sock.getbyte
422
opcode = first_group & 0b00001111
423
raise Detach if opcode == 8
424
- raise "Unsupported: #{opcode}" unless opcode == 1
+ raise "Unsupported: #{opcode} #{first_group}" unless opcode == 1
425
426
fin = first_group & 0b10000000 != 128
427
raise 'Unsupported' if fin
0 commit comments