Skip to content

Commit c7c0f8a

Browse files
committed
Fix an accidentally-deleted call to the ProfileDataLoadTask.
1 parent c1ece88 commit c7c0f8a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

  • palace-books-controller/src/main/java/org/nypl/simplified/books/controller

palace-books-controller/src/main/java/org/nypl/simplified/books/controller/Controller.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,14 @@ class Controller private constructor(
163163
.subscribe(this::onProfileUpdated)
164164

165165
this.updateCrashlytics()
166+
167+
this.submitTask {
168+
this.logger.debug("Scheduling profile data load...")
169+
ProfileDataLoadTask(
170+
this.profiles.currentProfile(),
171+
this.bookRegistry
172+
).run()
173+
}
166174
}
167175

168176
private fun onProfileUpdated(event: ProfileUpdated) {

0 commit comments

Comments
 (0)