Skip to content

Commit

Permalink
fix: function name
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jun 29, 2022
1 parent 131fb2a commit f40dd5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ private void setBundleStatus(final String id, final BundleStatus status) {
}
}

private String getCurrentBundleFolder() {
private String getCurrentBundleId() {
if(this.isUsingBuiltin()) {
return BundleInfo.VERSION_BUILTIN;
} else {
Expand All @@ -496,7 +496,7 @@ private String getCurrentBundleFolder() {
}

public BundleInfo getCurrentBundle() {
return this.getBundleInfo(this.getCurrentBundleFolder());
return this.getBundleInfo(this.getCurrentBundleId());
}

public String getCurrentBundlePath() {
Expand Down

0 comments on commit f40dd5b

Please sign in to comment.