diff --git a/js/modules/stickers.js b/js/modules/stickers.js index 0a2f4ba6d..d76300bb5 100644 --- a/js/modules/stickers.js +++ b/js/modules/stickers.js @@ -147,10 +147,12 @@ function capturePacksToDownload(existingPackLookup) { } if (doesPackNeedDownload(existing)) { + const status = + existing.attemptedStatus === 'installed' ? 'installed' : null; toDownload[id] = { id, key: existing.key, - status: existing.attemptedStatus, + status, }; } });