mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 11:35:29 +01:00
Fix crash when search fails in web UI (#17853)
This commit is contained in:
parent
2de44d3e47
commit
8751c3c495
@ -24,15 +24,15 @@ const appendLoadMore = (id, list, onLoadMore) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderAccounts = (results, onLoadMore) => appendLoadMore('accounts', results.get('accounts').map(item => (
|
const renderAccounts = (results, onLoadMore) => appendLoadMore('accounts', results.get('accounts', ImmutableList()).map(item => (
|
||||||
<Account key={`account-${item}`} id={item} />
|
<Account key={`account-${item}`} id={item} />
|
||||||
)), onLoadMore);
|
)), onLoadMore);
|
||||||
|
|
||||||
const renderHashtags = (results, onLoadMore) => appendLoadMore('hashtags', results.get('hashtags').map(item => (
|
const renderHashtags = (results, onLoadMore) => appendLoadMore('hashtags', results.get('hashtags', ImmutableList()).map(item => (
|
||||||
<Hashtag key={`tag-${item.get('name')}`} hashtag={item} />
|
<Hashtag key={`tag-${item.get('name')}`} hashtag={item} />
|
||||||
)), onLoadMore);
|
)), onLoadMore);
|
||||||
|
|
||||||
const renderStatuses = (results, onLoadMore) => appendLoadMore('statuses', results.get('statuses').map(item => (
|
const renderStatuses = (results, onLoadMore) => appendLoadMore('statuses', results.get('statuses', ImmutableList()).map(item => (
|
||||||
<Status key={`status-${item}`} id={item} />
|
<Status key={`status-${item}`} id={item} />
|
||||||
)), onLoadMore);
|
)), onLoadMore);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user