style(autotell): csharpier format F2.1 changes

This commit is contained in:
2026-05-12 09:19:49 +02:00
parent 11ad5db127
commit 570a6f071c
+2 -8
View File
@@ -50,10 +50,7 @@ internal sealed class AutoTellTabsService : IDisposable
// contains TempTabs from a prior session starts in sync. Plugin.cs:168
// crash-recovery has already dropped TempTabs by the time we get here,
// so the snapshot reflects post-recovery reality.
Interlocked.Exchange(
ref _activeTempTabCount,
Plugin.Config.Tabs.Count(t => t.IsTempTab)
);
Interlocked.Exchange(ref _activeTempTabCount, Plugin.Config.Tabs.Count(t => t.IsTempTab));
_messageManager.MessageProcessed += HandleTell;
Plugin.ClientState.Logout += OnLogout;
@@ -65,10 +62,7 @@ internal sealed class AutoTellTabsService : IDisposable
// live IsTempTab count.
internal void ResyncTempTabCounter()
{
Interlocked.Exchange(
ref _activeTempTabCount,
Plugin.Config.Tabs.Count(t => t.IsTempTab)
);
Interlocked.Exchange(ref _activeTempTabCount, Plugin.Config.Tabs.Count(t => t.IsTempTab));
}
public void Dispose()