Browse Source

Merge pull request #6512 from thornbill/preferences-fix

Preferences fix
dkanada 3 years ago
parent
commit
f6be0e2d1d
2 changed files with 1 additions and 5 deletions
  1. 1 1
      Dockerfile
  2. 0 4
      Jellyfin.Data/Entities/CustomItemDisplayPreferences.cs

+ 1 - 1
Dockerfile

@@ -2,7 +2,7 @@ ARG DOTNET_VERSION=5.0
 
 FROM node:alpine as web-builder
 ARG JELLYFIN_WEB_VERSION=master
-RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python \
+RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-sdk automake libtool make gcc musl-dev nasm python3 \
  && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
  && cd jellyfin-web-* \
  && yarn install \

+ 0 - 4
Jellyfin.Data/Entities/CustomItemDisplayPreferences.cs

@@ -81,10 +81,6 @@ namespace Jellyfin.Data.Entities
         /// <summary>
         /// Gets or sets the preference value.
         /// </summary>
-        /// <remarks>
-        /// Required.
-        /// </remarks>
-        [Required]
         public string Value { get; set; }
     }
 }