mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Merge pull request #7885 from iwalton3/fix-navigation-buttons
Prevent 400 error when using navigation buttons.
(cherry picked from commit 8b69b0f521
)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
parent
6702756e7b
commit
8d1dcb3c05
@ -14,9 +14,9 @@ public class GeneralCommand
|
||||
}
|
||||
|
||||
[JsonConstructor]
|
||||
public GeneralCommand(Dictionary<string, string> arguments)
|
||||
public GeneralCommand(Dictionary<string, string>? arguments)
|
||||
{
|
||||
Arguments = arguments;
|
||||
Arguments = arguments ?? new Dictionary<string, string>();
|
||||
}
|
||||
|
||||
public GeneralCommandType Name { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user