Some changes

This commit is contained in:
Thomas 2020-12-30 12:21:40 +01:00
parent 44d26bb1cf
commit 2277cc5f05
2 changed files with 3 additions and 3 deletions

View File

@ -21,11 +21,11 @@ apply plugin: 'de.undercouch.download'
group='com.github.TorrentStream'
android {
compileSdkVersion 29
compileSdkVersion 30
defaultConfig {
minSdkVersion 15
targetSdkVersion 29
targetSdkVersion 30
}
buildTypes {

View File

@ -187,7 +187,7 @@ public final class TorrentStream {
*/
private TorrentInfo getTorrentInfo(String torrentUrl) throws TorrentInfoException {
if (torrentUrl.startsWith("magnet")) {
byte[] data = torrentSession.fetchMagnet(torrentUrl, 30000);
byte[] data = torrentSession.fetchMagnet(torrentUrl, 30);
if (data != null)
try {
return TorrentInfo.bdecode(data);