Merge branch 'hotfix/5.0.11' of gitlab.com:gravitlauncherteam/Launcher into hotfix/5.0.11

This commit is contained in:
Gravit 2020-01-18 14:03:46 +07:00
commit 74e18f06c2
No known key found for this signature in database
GPG key ID: 061981E1E85D3216

View file

@ -95,7 +95,7 @@ public void download(String base, List<DownloadTask> applies, Path dstDirFile, D
for(int i=0;i<THREADS;++i) for(int i=0;i<THREADS;++i)
{ {
try { try {
threads[i].wait(); threads[i].join();
if(excRef.get() != null) if(excRef.get() != null)
{ {
Exception ex = excRef.get(); Exception ex = excRef.get();
@ -275,4 +275,4 @@ public static void transfer(InputStream input, Path file, String filename, long
} }
} }
} }
} }