Update OsMoThread.java
This commit is contained in:
parent
d78db9967b
commit
6cfd05058d
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ public class OsMoThread {
|
||||||
for(int i = 0; i < l.length(); i++) {
|
for(int i = 0; i < l.length(); i++) {
|
||||||
char c = l.charAt(i);
|
char c = l.charAt(i);
|
||||||
if(c == '\n' || c == '=' || c == '\\') {
|
if(c == '\n' || c == '=' || c == '\\') {
|
||||||
res.append('\\')
|
res.append('\\');
|
||||||
}
|
}
|
||||||
res.append(c);
|
res.append(c);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue