Browse Source

Fix timed mute lint

Tusooa Zhu 2 năm trước cách đây
mục cha
commit
5359633c74
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/services/api/api.service.js

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

@@ -1121,7 +1121,7 @@ const fetchMutes = ({ credentials }) => {
 const muteUser = ({ id, expiresIn, credentials }) => {
   const payload = {}
   if (expiresIn) {
-    payload['expires_in'] = expiresIn
+    payload.expires_in = expiresIn
   }
   return promisedRequest({ url: MASTODON_MUTE_USER_URL(id), credentials, method: 'POST', payload })
 }