Browse Source

fix breaking change from bcc050d to use new env service

PM-25525-DEBT-Fix-SystemServiceProvider-dependency-injection
John Harrington 2 months ago
parent
commit
e9ff409a74
No known key found for this signature in database
GPG Key ID: 96217ABBB5514031
  1. 2
      libs/importer/src/services/import.service.ts

2
libs/importer/src/services/import.service.ts

@ -146,7 +146,7 @@ export class ImportService implements ImportServiceAbstraction { @@ -146,7 +146,7 @@ export class ImportService implements ImportServiceAbstraction {
let loaders = availableLoaders(type, client);
// Mac App Store is currently disabled due to sandboxing.
let isUnsupported = this.system.environment.isMacAppStore();
let isUnsupported = this.env.isMacAppStore();
if (enabled && type === "bravecsv") {
try {

Loading…
Cancel
Save