Skip to content

Commit 3849007

Browse files
authored
Fixes API.summary() error (#67)
1 parent 82f48f6 commit 3849007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/io/textile/rnmobile/TextileNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ public void summary(final Promise promise) {
11831183
@Override
11841184
public void run() {
11851185
try {
1186-
promise.resolve(node.summary());
1186+
promise.resolve(encode(node.summary()));
11871187
}
11881188
catch (Exception e) {
11891189
promise.reject("summary", e);

0 commit comments

Comments
 (0)