fix for duplicates appearing on My LBRY page
This commit is contained in:
parent
c51f834636
commit
0cc2b4e368
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class DownloadsPage extends React.PureComponent {
|
|||
if (a.metadata.title === b.metadata.title) return 0;
|
||||
return (a.metadata.title < b.metadata.title) ? -1 : 1;
|
||||
})}
|
||||
keyExtractor={(item, index) => item.outpoint}
|
||||
keyExtractor={(item, index) => item.download_path}
|
||||
/>
|
||||
</View>}
|
||||
<FloatingWalletBalance navigation={navigation} />
|
||||
|
|
Loading…
Reference in a new issue