Add missing space in debug output

This commit is contained in:
Marc Schink 2019-12-20 19:10:07 +01:00 committed by John Doe
parent 92cf221a2b
commit 5117956648
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ public class HttpDownloadConnection implements Transferable {
if (tryResume) {
resumeSize = file.getSize();
Log.d(Config.LOGTAG, "http download trying resume after" + resumeSize + " of " + expected);
Log.d(Config.LOGTAG, "http download trying resume after " + resumeSize + " of " + expected);
connection.setRequestProperty("Range", "bytes=" + resumeSize + "-");
}
connection.setConnectTimeout(Config.SOCKET_TIMEOUT * 1000);