lib/stomp/constants.rb in stomp-1.2.7 vs lib/stomp/constants.rb in stomp-1.2.8
- old
+ new
@@ -72,18 +72,18 @@
N_ASCII = 0x6e
#
# Codec from/to values.
#
ENCODE_VALUES = [
- "\\\\", "\\", # encoded, decoded
+ "\\\\\\\\", "\\", # encoded, decoded
"\\" + "n", "\n",
"\\" + "r", "\r",
"\\c", ":",
]
#
DECODE_VALUES = [
- "\\\\\\\\", "\\", # encoded, decoded
+ "\\\\", "\\", # encoded, decoded
"\\" + "n", "\n",
"\\" + "r", "\r",
"\\c", ":",
]