mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Merge pull request #7885 from iwalton3/fix-navigation-buttons
Prevent 400 error when using navigation buttons.
This commit is contained in:
commit
8b69b0f521
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue