فهرست منبع

Fix aspect ratio calculation returning 0 or 1 when item has no default AR

cvium 4 سال پیش
والد
کامیت
ec5b738079
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Emby.Server.Implementations/Dto/DtoService.cs

+ 1 - 1
Emby.Server.Implementations/Dto/DtoService.cs

@@ -1431,7 +1431,7 @@ namespace Emby.Server.Implementations.Dto
                 return null;
                 return null;
             }
             }
 
 
-            return width / height;
+            return (double)width / height;
         }
         }
     }
     }
 }
 }