mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-14 00:47:25 +00:00
Misc
This commit is contained in:
parent
c48f05f5cc
commit
760068fe91
1 changed files with 1 additions and 1 deletions
|
@ -2595,7 +2595,7 @@ namespace ArchiSteamFarm {
|
|||
private async Task Start() {
|
||||
if (!KeepRunning) {
|
||||
KeepRunning = true;
|
||||
new Task(HandleCallbacks, TaskCreationOptions.LongRunning).Start();
|
||||
Task.Factory.StartNew(HandleCallbacks, TaskCreationOptions.DenyChildAttach | TaskCreationOptions.LongRunning).Forget();
|
||||
ArchiLogger.LogGenericInfo(Strings.Starting);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue