We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1488d commit 7059a42Copy full SHA for 7059a42
example/HetimaTorrentClient/web/manifest.json
@@ -1,6 +1,6 @@
1
{
2
"name": "Hetima Torrent Client (Pre-alpha)",
3
- "version": "0.1.8",
+ "version": "0.1.9",
4
5
"manifest_version": 2,
6
lib/src/app/torrentengine_torrent.dart
@@ -64,7 +64,7 @@ class TorrentEngineTorrent {
64
65
Future createBaseFile() async {
66
int length = _torrentFile.info.files.dataSize;
67
- Uint8List buffer = new Uint8List.fromList(new List.filled(512 * 1024, 0));
+ Uint8List buffer = new Uint8List.fromList(new List.filled(2*512 * 1024, 0));
68
int start = await _downloadedData.getLength();
69
int end = start;
70
int retry = 0;
0 commit comments