Add message when torrent finishes downloading

This commit is contained in:
Torjus
2018-07-30 12:47:02 +02:00
parent 48b8cdf26c
commit 730c4e23c7
+5 -1
View File
@@ -121,10 +121,14 @@ class FileChatEntry extends Component
{this.state.files && (
<div>
<p>Torrent finished downloading.</p>
{this.state.files.map((file, i) => (
<div key={i}>
{file.name}
<button onClick={() => this.saveFile(file)}>
Save {file.name}
Save
</button>
</div>
))}