Browse Source

Fix mistake

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
1761d3f9c3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/assets/javascripts/components/actions/cards.jsx

+ 1
- 1
app/assets/javascripts/components/actions/cards.jsx View File

@ -9,7 +9,7 @@ export function fetchStatusCard(id) {
dispatch(fetchStatusCardRequest(id));
api(getState).get(`/api/v1/statuses/${id}/card`).then(response => {
if (response.data.length === 0) {
if (!response.data.url) {
return;
}

Loading…
Cancel
Save