소스 검색

Add max length for SortBy

Patrick Barron 5 년 전
부모
커밋
2831062a3f
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Jellyfin.Data/Entities/DisplayPreferences.cs

+ 2 - 0
Jellyfin.Data/Entities/DisplayPreferences.cs

@@ -120,6 +120,8 @@ namespace Jellyfin.Data.Entities
         /// <summary>
         /// Gets or sets what the view should be sorted by.
         /// </summary>
+        [MaxLength(64)]
+        [StringLength(64)]
         public string SortBy { get; set; }
 
         /// <summary>