Skip to content

Commit

Permalink
Fix possible crash during NotificationChannels initialization.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Feb 16, 2021
1 parent 2779d7e commit 267f759
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -124,9 +124,9 @@ public void onCreate() {
Log.i(TAG, "onCreate()");
})
.addBlocking("crash-handling", this::initializeCrashHandling)
.addBlocking("notification-channels", () -> NotificationChannels.create(this))
.addBlocking("eat-db", () -> DatabaseFactory.getInstance(this))
.addBlocking("app-dependencies", this::initializeAppDependencies)
.addBlocking("notification-channels", () -> NotificationChannels.create(this))
.addBlocking("first-launch", this::initializeFirstEverAppLaunch)
.addBlocking("app-migrations", this::initializeApplicationMigrations)
.addBlocking("ring-rtc", this::initializeRingRtc)
Expand Down

0 comments on commit 267f759

Please sign in to comment.