Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 10.7 warning for native player setting #545

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion langs/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
"version": "Version: {{version}}",
"keepAwake": "Keep Screen Awake",
"nativeVideoPlayer": "Use Native Video Player",
"minimumServerVersion": "Requires Server Version 10.7+",
"fmp4Support": "Prefer fMP4 in HLS",
"lightTheme": "Use Light Theme",
"systemTheme": "Use System Theme",
Expand Down
1 change: 0 additions & 1 deletion screens/SettingsScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ const SettingsScreen = observer(() => {
badge: {
value: t('common.beta')
},
subtitle: t('settings.minimumServerVersion'),
value: rootStore.settingStore.isNativeVideoPlayerEnabled,
onValueChange: action(value => {
rootStore.settingStore.isNativeVideoPlayerEnabled = value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ exports[`SettingsScreen should render correctly 1`] = `
},
"key": "native-video-switch",
"onValueChange": [Function],
"subtitle": "Requires Server Version 10.7+",
"title": "Use Native Video Player",
"value": undefined,
},
Expand Down
Loading