aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorTeddy Wing2022-04-10 20:44:04 +0200
committerTeddy Wing2022-04-10 20:44:04 +0200
commit5395fc40b97dc035923d91e89336353f47ba0781 (patch)
treef83e26166bc3e752d9453a67cfb57420bb524a30 /src/index.ts
parent2393b7b44826b2677660fa6dc162371151e00b2c (diff)
parent348e28d41d72bbfd2b2cfb509cef5adbb10e4bae (diff)
downloadnetflix-immersive-5395fc40b97dc035923d91e89336353f47ba0781.tar.bz2
Merge branch 'update-for-new-Netflix-player-2021.08'
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index 58d4367..237d232 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,4 +1,4 @@
-// Copyright (c) 2020 Teddy Wing
+// Copyright (c) 2020–2021 Teddy Wing
//
// This file is part of Immersive.
//
@@ -16,14 +16,19 @@
// along with Immersive. If not, see <https://www.gnu.org/licenses/>.
import fullscreen_credits from './fullscreen_credits';
+import logger from './logger';
+import seamless from './seamless';
import styles from './styles';
import watch_credits from './watch_credits';
function main () {
+ logger.debug('Initialising');
+
styles();
fullscreen_credits();
watch_credits();
+ seamless();
}