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 3d21703 commit 1ca1c33Copy full SHA for 1ca1c33
lib/ruby-debug-ide/xml_printer.rb
@@ -344,7 +344,8 @@ def print(*params)
344
end
345
346
def handle_binary_data(value)
347
- return "[Binary Data]" if (value.respond_to?('is_binary_data?') && value.is_binary_data?)
+ return '[Binary Data]' if (value.respond_to?('is_binary_data?') && value.is_binary_data?)
348
+ return '[Invalid encoding]' if (value.respond_to?('valid_encoding?') && !value.valid_encoding?)
349
value
350
351
0 commit comments