Merge pull request #431 from TeamPiped/async-matrix-start

Start matrix sync thread asynchronously.
This commit is contained in:
Kavin 2022-11-15 01:45:06 +00:00 committed by GitHub
commit 498b88334d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -43,11 +43,11 @@ public class Main {
Injector.useSpecializer();
new Thread(new SyncRunner(
Multithreading.runAsync(() -> new Thread(new SyncRunner(
new OkHttpClient.Builder().readTimeout(60, TimeUnit.SECONDS).build(),
MATRIX_SERVER,
MatrixHelper.MATRIX_TOKEN)
).start();
).start());
new Timer().scheduleAtFixedRate(new TimerTask() {
@Override