mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-31 04:48:27 +01:00
Fix default values missing in ClientCapabilities(Dto) (#11232)
This commit is contained in:
@@ -35,11 +35,11 @@ namespace MediaBrowser.Model.Session
|
||||
// TODO: Remove after 10.9
|
||||
[Obsolete("Unused")]
|
||||
[DefaultValue(false)]
|
||||
public bool? SupportsContentUploading { get; set; }
|
||||
public bool? SupportsContentUploading { get; set; } = false;
|
||||
|
||||
// TODO: Remove after 10.9
|
||||
[Obsolete("Unused")]
|
||||
[DefaultValue(false)]
|
||||
public bool? SupportsSync { get; set; }
|
||||
public bool? SupportsSync { get; set; } = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user