mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-11 17:45:38 +00:00
fix: resolve syntax error
This commit is contained in:
parent
cb1bc64daa
commit
c225528cd3
3 changed files with 3 additions and 4 deletions
|
|
@ -37,7 +37,6 @@ import { SubtitleSyncModal } from './modals/SubtitleSyncModal';
|
|||
import SpeedModal from './modals/SpeedModal';
|
||||
import { SubmitIntroModal } from './modals/SubmitIntroModal';
|
||||
import { SourcesModal } from './modals/SourcesModal';
|
||||
import { ResolutionModal } from './modals/ResolutionModal';
|
||||
import { EpisodesModal } from './modals/EpisodesModal';
|
||||
import { EpisodeStreamsModal } from './modals/EpisodeStreamsModal';
|
||||
import { ErrorModal } from './modals/ErrorModal';
|
||||
|
|
|
|||
|
|
@ -1924,10 +1924,10 @@ const ConditionalPostHogProvider: React.FC<{ children: React.ReactNode }> = ({ c
|
|||
apiKey="phc_sk6THCtV3thEAn6cTaA9kL2cHuKDBnlYiSL40ywdS6C"
|
||||
options={{
|
||||
host: "https://us.i.posthog.com",
|
||||
autocapture: analyticsEnabled,
|
||||
// Start opted out if analytics is disabled
|
||||
defaultOptIn: analyticsEnabled,
|
||||
}}
|
||||
autocapture={analyticsEnabled}
|
||||
>
|
||||
<PostHogOptController
|
||||
enabled={analyticsEnabled}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import JSZip from 'jszip';
|
|||
// Local Shader Pack Asset
|
||||
const SHADER_ZIP = require('../../assets/shaders/shaders_new.zip');
|
||||
|
||||
// Key files to verify installation (matches AnymeX zip contents)
|
||||
// Key files to verify installation
|
||||
const ESSENTIAL_SHADERS = [
|
||||
'Anime4K_Clamp_Highlights.glsl',
|
||||
'Anime4K_Restore_CNN_M.glsl',
|
||||
|
|
@ -15,7 +15,7 @@ const ESSENTIAL_SHADERS = [
|
|||
'SSimSuperRes.glsl',
|
||||
];
|
||||
|
||||
// Exact profiles from AnymeX
|
||||
// Exact profiles
|
||||
export const SHADER_PROFILES = {
|
||||
"MID-END": {
|
||||
'Anime4K: Mode A (Fast)': [
|
||||
|
|
|
|||
Loading…
Reference in a new issue