mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Misc
This commit is contained in:
@@ -112,7 +112,7 @@ public static class Utilities {
|
||||
public static void InBackground<T>(Func<T> function, bool longRunning = false) {
|
||||
ArgumentNullException.ThrowIfNull(function);
|
||||
|
||||
InBackground(void() => function(), longRunning);
|
||||
InBackground(void () => function(), longRunning);
|
||||
}
|
||||
|
||||
[PublicAPI]
|
||||
|
||||
@@ -2659,9 +2659,9 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
|
||||
}
|
||||
|
||||
if (packagesToRefresh.Count > 0) {
|
||||
ArchiLogger.LogGenericTrace(Strings.BotRefreshingPackagesData);
|
||||
ArchiLogger.LogGenericInfo(Strings.BotRefreshingPackagesData);
|
||||
await ASF.GlobalDatabase.RefreshPackages(this, packagesToRefresh).ConfigureAwait(false);
|
||||
ArchiLogger.LogGenericTrace(Strings.Done);
|
||||
ArchiLogger.LogGenericInfo(Strings.Done);
|
||||
}
|
||||
|
||||
if (hasNewEntries) {
|
||||
|
||||
Reference in New Issue
Block a user