Skip to content

Commit d2cee94

Browse files
committed
Fix calls :S
1 parent bb20010 commit d2cee94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

image-source/image-source.android.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class ImageSource implements definition.ImageSource {
8787
return false;
8888
}
8989

90-
var targetFormat = getTargetFromat(format);
90+
var targetFormat = getTargetFormat(format);
9191

9292
// TODO add exception handling
9393
var outputStream = new java.io.BufferedOutputStream(new java.io.FileOutputStream(path));
@@ -102,7 +102,7 @@ export class ImageSource implements definition.ImageSource {
102102
return null;;
103103
}
104104

105-
var targetFormat = getTargetFromat(format);
105+
var targetFormat = getTargetFormat(format);
106106

107107
var outputStream = new java.io.ByteArrayOutputStream();
108108
var base64Stream = new android.util.Base64OutputStream(outputStream, android.util.Base64.NO_WRAP);

0 commit comments

Comments
 (0)