From b221dcff5af68dff2f642f789b2985bab70c563b Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 29 May 2019 12:22:52 -0700 Subject: [PATCH] Only use attemptedStatus on re-download if it is 'installed' --- js/modules/stickers.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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, }; } });