Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
fix(application): add trim on package name
Browse files Browse the repository at this point in the history
Signed-off-by: Rafa Hernandez <[email protected]>
  • Loading branch information
rafaelje authored and Hector Rondon committed May 11, 2018
1 parent b85a827 commit bf0e160
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ public void resetPassword(String newPassword) {
public void removePackage(String taskId, String packageName) {
try {
PoliciesFiles policiesFiles = new PoliciesFiles(PoliciesController.this.context);
policiesFiles.removeApk(packageName);
policiesFiles.removeApk(packageName.trim());

// return the status of the task
sendTaskStatus(taskId, FEEDBACK_DONE);
Expand Down

0 comments on commit bf0e160

Please sign in to comment.