retold-data-service 2.0.24 → 2.0.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -71,9 +71,12 @@ class IntegrationTelemetryStorageProviderBibliograph extends libIntegrationTelem
71
71
  // Bibliograph FS Storage must be initialized before any operations.
72
72
  // The service is instantiated in the getter but initialize() is async
73
73
  // and must complete before createSource/read/write will work.
74
- if (tmpBibliograph.BibliographStorage && !tmpBibliograph.BibliographStorage.Initialized)
74
+ // The storage provider is registered on the fable instance, not
75
+ // on the Bibliograph service object itself.
76
+ let tmpStorage = this.fable.BibliographStorage;
77
+ if (tmpStorage && !tmpStorage.Initialized)
75
78
  {
76
- return tmpBibliograph.BibliographStorage.initialize(
79
+ return tmpStorage.initialize(
77
80
  (pInitError) =>
78
81
  {
79
82
  if (pInitError)