delight-im / delight-im/Android-DDP
String with two double quotes in RequestListener
Open
question
- Dominant language
- Java
- Stars
- 274
- Forks
- 51
- PR merge metrics
- No merged PRs in 30d
Description
This is my code
```
("myMethodName", new Object[]{values}, new ResultListener() {
@Override
public void onSuccess(String result) {
}
}
```
at onSuccess i am getting result with two double quotes
`""resultValue"";`
then my following code return me false because of two double quotes
```
if (result.equalsIgnoreCase("resultValue")) {
return true;
}else{
return false;
}
```
on server
```
myMethodName: function () {
return 'resultValue';
},
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.