prevent crash on launch
This commit is contained in:
parent
ca634f8d3c
commit
2b10b6d7a6
@ -1,5 +1,6 @@
|
|||||||
using BarRaider.SdTools;
|
using BarRaider.SdTools;
|
||||||
using BarRaider.SdTools.Payloads;
|
using BarRaider.SdTools.Payloads;
|
||||||
|
using FocusVolumeControl.AudioHelpers;
|
||||||
using FocusVolumeControl.AudioSessions;
|
using FocusVolumeControl.AudioSessions;
|
||||||
using FocusVolumeControl.UI;
|
using FocusVolumeControl.UI;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@ -49,8 +50,13 @@ public class DialAction : EncoderBase
|
|||||||
|
|
||||||
WindowChangedEventLoop.Instance.WindowChanged += WindowChanged;
|
WindowChangedEventLoop.Instance.WindowChanged += WindowChanged;
|
||||||
|
|
||||||
var session = _audioHelper.GetActiveSession(settings.FallbackBehavior);
|
try
|
||||||
_ = UpdateStateIfNeeded(session);
|
{
|
||||||
|
//just in case we fail to get the active session, don't prevent the plugin from launching
|
||||||
|
var session = _audioHelper.GetActiveSession(settings.FallbackBehavior);
|
||||||
|
_ = UpdateStateIfNeeded(session);
|
||||||
|
}
|
||||||
|
catch { }
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void Dispose()
|
public override void Dispose()
|
||||||
|
Loading…
Reference in New Issue
Block a user