This commit is contained in:
Oliver 2022-07-13 21:35:35 +02:00
parent 9440f84b41
commit 0e2ab20a21
Signed by: okaestne
GPG Key ID: 06A81B143EA9588F
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ public class AsyncHandlerThread implements Runnable {
AsyncHandlerThread(List<Task> tasks, String name, TelegramAPI api) {
this.tasks = tasks;
this.api = api;
shouldrun = true;
thread = new Thread(this, name);
thread.start();