diff --git a/src/public/js/components/shows/details.js b/src/public/js/components/shows/details.js index ecaa895..114eb9d 100644 --- a/src/public/js/components/shows/details.js +++ b/src/public/js/components/shows/details.js @@ -148,6 +148,7 @@ function Episode(props) { /> ) })} + @@ -176,3 +177,17 @@ class Torrent extends React.Component { ) } } + +function DownloadButton(props) { + if (props.data.polochon_url === "") { + return null + } + + return ( + + + Download + + + ); +}