Allow to check if an AB update is being installed

This commit is contained in:
Gabriele M
2017-07-16 21:23:44 +02:00
parent 601823dfc7
commit f94846674f
3 changed files with 20 additions and 6 deletions

View File

@@ -519,4 +519,9 @@ public class UpdaterController implements UpdaterControllerInt {
public boolean isInstallingUpdate() {
return ABUpdateInstaller.isInstallingUpdate();
}
@Override
public boolean isInstallingUpdate(String downloadId) {
return ABUpdateInstaller.isInstallingUpdate(downloadId);
}
}