Quick fix, 0.1.2.0 again

This commit is contained in:
Aidan Follestad 2016-08-06 00:44:57 -05:00
parent e2f47e6a22
commit 665ab6ad7c
3 changed files with 4 additions and 1 deletions

Binary file not shown.

View file

@ -8,7 +8,7 @@ android {
applicationId "com.afollestad.nocknock"
minSdkVersion 21
targetSdkVersion 24
versionCode 9
versionCode 10
versionName "0.1.2.0"
lintOptions {

View file

@ -215,6 +215,9 @@ public class CheckService extends Service {
if (site.reason != null && !site.toString().isEmpty())
site.status = ServerStatus.ERROR;
}
if (site.status == ServerStatus.ERROR)
showNotification(this, site);
} catch (BridgeException e) {
processError(e, site);
}