From 21b8364f6c78715ecb32d99c987c8eaab6fa3fb2 Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sat, 11 Apr 2020 20:32:53 +0100 Subject: [PATCH] Call bind() before accessing elements --- src/popup.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/popup.ts b/src/popup.ts index 7895af9..c4b9ef2 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -11,11 +11,11 @@ class Popup { static async init(): Promise { const preferences: Preferences = await PreferencesRepository.get(); + this.bind(); + this.hideLikesCheckbox.checked = preferences.hideLikes; this.hideRepliesCheckbox.checked = preferences.hideReplies; this.hideRetweetsCheckbox.checked = preferences.hideRetweets; - - this.bind(); } static bind(): void {