Răsfoiți Sursa

add parseInt in poll expires_in to make sure FE sends integers in all cases

jonossa 1 an în urmă
părinte
comite
c9072ddb0b
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/services/api/api.service.js

+ 2 - 2
src/services/api/api.service.js

@@ -840,7 +840,7 @@ const postStatus = ({
   })
   if (pollOptions.some(option => option !== '')) {
     const normalizedPoll = {
-      expires_in: poll.expiresIn,
+      expires_in: parseInt(poll.expiresIn, 10),
       multiple: poll.multiple
     }
     Object.keys(normalizedPoll).forEach(key => {
@@ -897,7 +897,7 @@ const editStatus = ({
 
   if (pollOptions.some(option => option !== '')) {
     const normalizedPoll = {
-      expires_in: poll.expiresIn,
+      expires_in: parseInt(poll.expiresIn, 10),
       multiple: poll.multiple
     }
     Object.keys(normalizedPoll).forEach(key => {