Fix mistake

This commit is contained in:
Eugen Rochko 2017-01-23 22:18:08 +01:00
parent d00189b55a
commit 1761d3f9c3
1 changed files with 1 additions and 1 deletions

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;
}