Skip to content

Commit

Permalink
fix: last android typo
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Dec 13, 2021
1 parent b5b7237 commit 6db9777
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public void reset(PluginCall call) {
public void current(PluginCall call) {
String pathHot = implementation.getLastPathHot();
JSObject ret = new JSObject();
String current = pathHot.length() >= 10 ? pathHot.substring(pathHot.length() - 10)) : 'default';
String current = pathHot.length() >= 10 ? pathHot.substring(pathHot.length() - 10) : "default";
ret.put("current", current);
call.resolve(ret);
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capacitor-updater",
"version": "1.0.17",
"version": "1.0.18",
"license": "AGPL-3.0-only",
"description": "Download app update from url",
"main": "dist/plugin.cjs.js",
Expand Down

0 comments on commit 6db9777

Please sign in to comment.