Skip to content

Commit

Permalink
fix: missing start getLatest android
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Oct 24, 2022
1 parent 862821a commit 56709ad
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,7 @@ public void run() {
CapacitorUpdaterPlugin.this.implementation.getLatest(
CapacitorUpdaterPlugin.this.updateUrl,
res -> {
Log.i(CapacitorUpdater.TAG, "Check for update via: " + CapacitorUpdaterPlugin.this.updateUrl);
final JSObject ret = new JSObject();
Iterator<String> keys = res.keys();
while (keys.hasNext()) {
Expand All @@ -360,7 +361,7 @@ public void run() {
);
}
}
);
).start();
}

private boolean _reset(final Boolean toLastSuccessful) {
Expand Down

0 comments on commit 56709ad

Please sign in to comment.