Read EnableNextVideoInfoOverlay from database.

This commit is contained in:
Patrick Barron 2020-07-24 16:35:20 -04:00
parent 9fcf23bd21
commit 13d919f236
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ namespace MediaBrowser.Api
dto.CustomPrefs["chromecastVersion"] = result.ChromecastVersion.ToString().ToLowerInvariant();
dto.CustomPrefs["skipForwardLength"] = result.SkipForwardLength.ToString();
dto.CustomPrefs["skipBackLength"] = result.SkipBackwardLength.ToString();
dto.CustomPrefs["enableNextVideoInfoOverlay"] = result.EnableNextVideoInfoOverlay.ToString();
return ToOptimizedResult(dto);
}