this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Try re-post if idempotency key fails

+8 -3
+8 -3
src/components/compose.jsx
··· 816 816 skipThreading: true, 817 817 }); 818 818 } else { 819 - newStatus = await masto.v1.statuses.create(params, { 820 - idempotencyKey: UID.current, 821 - }); 819 + try { 820 + newStatus = await masto.v1.statuses.create(params, { 821 + idempotencyKey: UID.current, 822 + }); 823 + } catch (_) { 824 + // If idempotency key fails, try again without it 825 + newStatus = await masto.v1.statuses.create(params); 826 + } 822 827 } 823 828 setUIState('default'); 824 829