@infrab4a/connect-angular 4.17.0-beta.6 → 4.17.0-beta.7
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.
|
@@ -2698,11 +2698,19 @@ AngularConnectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", ve
|
|
|
2698
2698
|
});
|
|
2699
2699
|
}
|
|
2700
2700
|
catch (error) {
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2701
|
+
if (error instanceof Error)
|
|
2702
|
+
console.error(error.message);
|
|
2703
|
+
try {
|
|
2704
|
+
return initializeAppCheck(app, {
|
|
2705
|
+
provider: undefined,
|
|
2706
|
+
isTokenAutoRefreshEnabled: true,
|
|
2707
|
+
});
|
|
2708
|
+
}
|
|
2709
|
+
catch (error2) {
|
|
2710
|
+
console.warn('ReCAPTCHA site key not provided or invalid, App Check not initialized');
|
|
2711
|
+
if (error2 instanceof Error)
|
|
2712
|
+
console.error(error2.message);
|
|
2713
|
+
}
|
|
2706
2714
|
}
|
|
2707
2715
|
}),
|
|
2708
2716
|
provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
|
|
@@ -2738,11 +2746,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
2738
2746
|
});
|
|
2739
2747
|
}
|
|
2740
2748
|
catch (error) {
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2749
|
+
if (error instanceof Error)
|
|
2750
|
+
console.error(error.message);
|
|
2751
|
+
try {
|
|
2752
|
+
return initializeAppCheck(app, {
|
|
2753
|
+
provider: undefined,
|
|
2754
|
+
isTokenAutoRefreshEnabled: true,
|
|
2755
|
+
});
|
|
2756
|
+
}
|
|
2757
|
+
catch (error2) {
|
|
2758
|
+
console.warn('ReCAPTCHA site key not provided or invalid, App Check not initialized');
|
|
2759
|
+
if (error2 instanceof Error)
|
|
2760
|
+
console.error(error2.message);
|
|
2761
|
+
}
|
|
2746
2762
|
}
|
|
2747
2763
|
}),
|
|
2748
2764
|
provideStorage((injector) => getStorage(injector.get(FirebaseApp))),
|