2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-30 13:47:41 +00:00

Match desktop buffer size

This commit is contained in:
Albert Vaca
2017-08-01 22:23:18 +02:00
parent f630ea3e3f
commit 31e2d0b208

View File

@@ -226,7 +226,7 @@ public class SharePlugin extends Plugin {
public void run() {
boolean successful = true;
try {
byte data[] = new byte[1024];
byte data[] = new byte[4096];
long progress = 0, prevProgressPercentage = -1;
int count;
while ((count = input.read(data)) >= 0) {