diff --git a/src/components/listview/listview.js b/src/components/listview/listview.js index d054d8172..f0f5440aa 100644 --- a/src/components/listview/listview.js +++ b/src/components/listview/listview.js @@ -105,7 +105,6 @@ define(['itemHelper', 'mediaInfo', 'indicators', 'connectionManager', 'layoutMan var apiClient = connectionManager.getApiClient(item.ServerId); var options = { - width: width, type: "Primary" }; diff --git a/src/controllers/auth/login.js b/src/controllers/auth/login.js index 4296b8bfb..a97f2e849 100644 --- a/src/controllers/auth/login.js +++ b/src/controllers/auth/login.js @@ -106,7 +106,7 @@ define(["apphost", "appSettings", "dom", "connectionManager", "loading", "layout if (user.PrimaryImageTag) { imgUrl = apiClient.getUserImageUrl(user.Id, { - width: 300, + width: 300 * window.devicePixelRatio, tag: user.PrimaryImageTag, type: "Primary" }); diff --git a/src/controllers/itemdetailpage.js b/src/controllers/itemdetailpage.js index 8e0394778..a1be8162b 100644 --- a/src/controllers/itemdetailpage.js +++ b/src/controllers/itemdetailpage.js @@ -1871,7 +1871,6 @@ define(["loading", "appRouter", "layoutManager", "connectionManager", "userSetti itemsContainer: castContent, coverImage: true, serverId: item.ServerId, - width: 160, shape: "overflowPortrait" }); }); diff --git a/src/controllers/userprofilespage.js b/src/controllers/userprofilespage.js index 2a2387ab6..3e41c0485 100644 --- a/src/controllers/userprofilespage.js +++ b/src/controllers/userprofilespage.js @@ -88,7 +88,7 @@ define(["loading", "dom", "globalize", "humanedate", "paper-icon-button-light", if (user.PrimaryImageTag) { imgUrl = ApiClient.getUserImageUrl(user.Id, { - width: 300, + width: 300 * window.devicePixelRatio, tag: user.PrimaryImageTag, type: "Primary" });