]> cat aescling's git repositories - mastodon.git/commitdiff
Disable file upload when there is a poll
authorThibaut Girka <thib@sitedethib.com>
Wed, 6 Mar 2019 12:52:14 +0000 (13:52 +0100)
committerThibG <thib@sitedethib.com>
Wed, 6 Mar 2019 22:56:53 +0000 (23:56 +0100)
app/javascript/flavours/glitch/actions/compose.js

index 21ed6225c1ffd9dba566a1c78682b816a90048e5..7fa35351fd20237bc9d7620f31e98c89f0828ad0 100644 (file)
@@ -64,6 +64,7 @@ export const COMPOSE_POLL_SETTINGS_CHANGE = 'COMPOSE_POLL_SETTINGS_CHANGE';
 
 const messages = defineMessages({
   uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' },
+  uploadErrorPoll:  { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' },
 });
 
 export function changeCompose(text) {
@@ -231,6 +232,12 @@ export function uploadCompose(files) {
       dispatch(showAlert(undefined, messages.uploadErrorLimit));
       return;
     }
+
+    if (getState().getIn(['compose', 'poll'])) {
+      dispatch(showAlert(undefined, messages.uploadErrorPoll));
+      return;
+    }
+
     dispatch(uploadComposeRequest());
 
     for (const [i, f] of Array.from(files).entries()) {