From fa34315210c4ca9c072c5f096058d8076feb1ba9 Mon Sep 17 00:00:00 2001 From: Bruno Windels <274386+bwindels@users.noreply.github.com> Date: Mon, 25 Apr 2022 16:44:31 +0200 Subject: [PATCH] undo refactoring typo from #723 --- src/platform/web/Platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/web/Platform.js b/src/platform/web/Platform.js index 1c999598..7d66301d 100644 --- a/src/platform/web/Platform.js +++ b/src/platform/web/Platform.js @@ -174,7 +174,7 @@ export class Platform { const {body}= await this.request(this._configURL, {method: "GET", format: "json", cache: true}).response(); this._config = body; } - this._notificationService = new NotificationService( + this.notificationService = new NotificationService( this._serviceWorkerHandler, this._config.push );