Skip to content

Commit 56d7062

Browse files
authored
Upgrade versions in FCM service worker (#382)
* Upgrade versions in FCM service worker * Add comment telling users to use latest
1 parent 2117c61 commit 56d7062

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

messaging/service-worker.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ function initInSw() {
1010
// Give the service worker access to Firebase Messaging.
1111
// Note that you can only use Firebase Messaging here. Other Firebase libraries
1212
// are not available in the service worker.
13-
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-app.js');
14-
importScripts('https://www.gstatic.com/firebasejs/8.10.1/firebase-messaging.js');
13+
// Replace 10.13.2 with latest version of the Firebase JS SDK.
14+
importScripts('https://www.gstatic.com/firebasejs/10.13.2/firebase-app-compat.js');
15+
importScripts('https://www.gstatic.com/firebasejs/10.13.2/firebase-messaging-compat.js');
1516

1617
// Initialize the Firebase app in the service worker by passing in
1718
// your app's Firebase config object.

0 commit comments

Comments
 (0)