this repo has no description
0
fork

Configure Feed

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

Got trolled by @neet

+3 -3
+3 -3
src/components/status.jsx
··· 953 953 setUIState('loading'); 954 954 (async () => { 955 955 try { 956 - const pollResponse = await masto.v1.poll.fetch(id); 956 + const pollResponse = await masto.v1.polls.fetch(id); 957 957 onUpdate(pollResponse); 958 958 } catch (e) { 959 959 // Silent fail ··· 1038 1038 }); 1039 1039 console.log(votes); 1040 1040 setUIState('loading'); 1041 - const pollResponse = await masto.v1.poll.vote(id, { 1041 + const pollResponse = await masto.v1.polls.vote(id, { 1042 1042 choices: votes, 1043 1043 }); 1044 1044 console.log(pollResponse); ··· 1087 1087 setUIState('loading'); 1088 1088 (async () => { 1089 1089 try { 1090 - const pollResponse = await masto.v1.poll.fetch(id); 1090 + const pollResponse = await masto.v1.polls.fetch(id); 1091 1091 onUpdate(pollResponse); 1092 1092 } catch (e) { 1093 1093 // Silent fail