fix: new plugin option

This commit is contained in:
Fredrik Burmester
2024-08-15 16:47:00 +02:00
parent aa0fbd6fad
commit 42ce8f15af

View File

@@ -6,6 +6,7 @@ type Settings = {
autoRotate?: boolean;
forceLandscapeInVideoPlayer?: boolean;
openFullScreenVideoPlayerByDefault?: boolean;
usePopularPlugin?: boolean;
};
/**
@@ -25,6 +26,7 @@ const loadSettings = async (): Promise<Settings> => {
autoRotate: true,
forceLandscapeInVideoPlayer: false,
openFullScreenVideoPlayerByDefault: false,
usePopularPlugin: false,
};
};