aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-05-03 12:07:30 +0200
committerGitHub <noreply@github.com>2026-05-03 12:07:30 +0200
commitf9012b641148fc52b48bc95c91fa21d28e3603fb (patch)
tree9c615b34e0773efe501418650a54f102d4d75fdb
parent6293e7a3c9e3317a59389124ed48cc8cc35b1b8f (diff)
parent58e7ff7f9d63c0982dfde8271b353ca1f122fd37 (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.cs4
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)