diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-04-08 13:15:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-08 13:15:02 +0200 |
| commit | 47bbe4c1466da4959f8eeb01f75565e1e8791e18 (patch) | |
| tree | 37cd1d9e21317ac242692c835aa8da7076882286 /MediaBrowser.Controller/IDisplayPreferencesManager.cs | |
| parent | 14f94b67934efd7af9efa0a09ffb83f86091d416 (diff) | |
| parent | 4892e0cf064a2a392881b38a5965324aa80eac0c (diff) | |
Merge pull request #5717 from cvium/nullable-custompref-value
Diffstat (limited to 'MediaBrowser.Controller/IDisplayPreferencesManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/IDisplayPreferencesManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/IDisplayPreferencesManager.cs b/MediaBrowser.Controller/IDisplayPreferencesManager.cs index 041eeea62..be1d974a4 100644 --- a/MediaBrowser.Controller/IDisplayPreferencesManager.cs +++ b/MediaBrowser.Controller/IDisplayPreferencesManager.cs @@ -48,7 +48,7 @@ namespace MediaBrowser.Controller /// <param name="itemId">The item id.</param> /// <param name="client">The client string.</param> /// <returns>The dictionary of custom item display preferences.</returns> - IDictionary<string, string> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client); + Dictionary<string, string> ListCustomItemDisplayPreferences(Guid userId, Guid itemId, string client); /// <summary> /// Sets the custom item display preference for the user and client. |
