aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2019-09-28 23:46:52 -0700
committerGitHub <noreply@github.com>2019-09-28 23:46:52 -0700
commit08a0bbe6e921f411e04a13c4fdc1282cf9fb4221 (patch)
tree58dec3f2e3cd977fe99a18aef93d78d09fc4c892 /app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt
parenteb5e83cdadc348eea8d76d6778f18850444783d1 (diff)
parentb82fadbff34ced9193f7b95e0d46dda5c33e9e08 (diff)
downloadfrost-08a0bbe6e921f411e04a13c4fdc1282cf9fb4221.tar.gz
frost-08a0bbe6e921f411e04a13c4fdc1282cf9fb4221.tar.bz2
frost-08a0bbe6e921f411e04a13c4fdc1282cf9fb4221.zip
Merge pull request #1555 from AllanWang/system-flag-color
Update system flag color
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt b/app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt
index 2d86f3b9..2dbe6b6b 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/services/UpdateReceiver.kt
@@ -32,6 +32,6 @@ class UpdateReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
if (intent.action != Intent.ACTION_MY_PACKAGE_REPLACED) return
L.d { "Frost has updated" }
- context.scheduleNotifications(Prefs.notificationFreq) //Update notifications
+ context.scheduleNotifications(Prefs.notificationFreq) // Update notifications
}
}