File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,20 @@ const isMessagingSupportedPromiseSymbol = '__angularfire_symbol__messagingIsSupp
1616
1717globalThis [ isAnalyticsSupportedPromiseSymbol ] ||= isAnalyticsSupported ( ) . then ( it =>
1818 globalThis [ isAnalyticsSupportedValueSymbol ] = it
19+ ) . catch ( ( ) =>
20+ globalThis [ isAnalyticsSupportedValueSymbol ] = false
1921) ;
2022
2123globalThis [ isMessagingSupportedPromiseSymbol ] ||= isMessagingSupported ( ) . then ( it =>
2224 globalThis [ isMessagingSupportedValueSymbol ] = it
25+ ) . catch ( ( ) =>
26+ globalThis [ isMessagingSupportedValueSymbol ] = false
2327) ;
2428
2529globalThis [ isRemoteConfigSupportedPromiseSymbol ] ||= isRemoteConfigSupported ( ) . then ( it =>
2630 globalThis [ isRemoteConfigSupportedValueSymbol ] = it
31+ ) . catch ( ( ) =>
32+ globalThis [ isRemoteConfigSupportedValueSymbol ] = false
2733) ;
2834
2935const isSupportedError = ( module : string ) =>
You can’t perform that action at this time.
0 commit comments