From 0774923169999611f3aea69449a492f2f586213a Mon Sep 17 00:00:00 2001 From: Dmitrii Cucleschin Date: Sun, 7 Jan 2024 15:03:56 -0800 Subject: [PATCH] set catalog posterShape to landscape to make titles more readable --- addon/moch/putio.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addon/moch/putio.js b/addon/moch/putio.js index 0437f5f..ae14fa5 100644 --- a/addon/moch/putio.js +++ b/addon/moch/putio.js @@ -36,7 +36,8 @@ export async function getCatalog(apiKey, offset = 0) { .map(file => ({ id: `${KEY}:${file.id}`, type: Type.OTHER, - name: file.name + name: file.name, + posterShape: 'landscape' }))); }