(purchase)
| 1076 | } |
| 1077 | |
| 1078 | async function setLuckmailPurchaseState(purchase) { |
| 1079 | const normalizedPurchase = purchase ? normalizeLuckmailPurchase(purchase) : null; |
| 1080 | await setState({ currentLuckmailPurchase: normalizedPurchase }); |
| 1081 | broadcastDataUpdate({ currentLuckmailPurchase: normalizedPurchase }); |
| 1082 | return normalizedPurchase; |
| 1083 | } |
| 1084 | |
| 1085 | async function setLuckmailMailCursorState(cursor) { |
| 1086 | const normalizedCursor = cursor ? normalizeLuckmailMailCursor(cursor) : null; |
no test coverage detected