diff options
| author | Bond-009 <bond.009@outlook.com> | 2026-05-03 12:07:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-03 12:07:30 +0200 |
| commit | f9012b641148fc52b48bc95c91fa21d28e3603fb (patch) | |
| tree | 9c615b34e0773efe501418650a54f102d4d75fdb | |
| parent | 6293e7a3c9e3317a59389124ed48cc8cc35b1b8f (diff) | |
| parent | 58e7ff7f9d63c0982dfde8271b353ca1f122fd37 (diff) | |
Merge pull request #16739 from tcsenpai/fix-symmetric-skip-defaults
fix: use symmetric 15s default for skip forward/backward lengths
| -rw-r--r-- | Jellyfin.Api/Controllers/DisplayPreferencesController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/DisplayPreferencesController.cs b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs index 61d40a7268..c1287fe3f4 100644 --- a/Jellyfin.Api/Controllers/DisplayPreferencesController.cs +++ b/Jellyfin.Api/Controllers/DisplayPreferencesController.cs @@ -157,13 +157,13 @@ public class DisplayPreferencesController : BaseJellyfinApiController existingDisplayPreferences.SkipBackwardLength = displayPreferences.CustomPrefs.TryGetValue("skipBackLength", out var skipBackLength) && !string.IsNullOrEmpty(skipBackLength) ? int.Parse(skipBackLength, CultureInfo.InvariantCulture) - : 10000; + : 15000; displayPreferences.CustomPrefs.Remove("skipBackLength"); existingDisplayPreferences.SkipForwardLength = displayPreferences.CustomPrefs.TryGetValue("skipForwardLength", out var skipForwardLength) && !string.IsNullOrEmpty(skipForwardLength) ? int.Parse(skipForwardLength, CultureInfo.InvariantCulture) - : 30000; + : 15000; displayPreferences.CustomPrefs.Remove("skipForwardLength"); existingDisplayPreferences.DashboardTheme = displayPreferences.CustomPrefs.TryGetValue("dashboardTheme", out var theme) |
