mirror of
https://github.com/EnderIce2/SDR-RPC.git
synced 2025-05-28 22:54:26 +00:00
This commit is contained in:
parent
4753a7849b
commit
0b51536839
@ -17,9 +17,9 @@ namespace EnderIce2.SDRSharpPlugin
|
|||||||
private const LogLevel logLevel = LogLevel.Trace;
|
private const LogLevel logLevel = LogLevel.Trace;
|
||||||
private const int discordPipe = -1;
|
private const int discordPipe = -1;
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "<Pending>")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "<Pending>")]
|
||||||
bool RPCalreadyLoaded = false;
|
bool RPCalreadyLoaded;
|
||||||
private ISharpControl _control;
|
private ISharpControl _control;
|
||||||
bool playedBefore = false;
|
bool playedBefore;
|
||||||
private SDRSharp.FrontEnds.SpyServer.ControllerPanel controllerPanel;
|
private SDRSharp.FrontEnds.SpyServer.ControllerPanel controllerPanel;
|
||||||
private TopWindowMessages windowMessages;
|
private TopWindowMessages windowMessages;
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "<Pending>")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0044:Add readonly modifier", Justification = "<Pending>")]
|
||||||
@ -263,7 +263,10 @@ namespace EnderIce2.SDRSharpPlugin
|
|||||||
{
|
{
|
||||||
string space_for_listen_list = " | ";
|
string space_for_listen_list = " | ";
|
||||||
if (!Utils.GetBooleanSetting("EnableRPCInvite", false))
|
if (!Utils.GetBooleanSetting("EnableRPCInvite", false))
|
||||||
|
{
|
||||||
space_for_listen_list = "";
|
space_for_listen_list = "";
|
||||||
|
}
|
||||||
|
|
||||||
LogWriter.WriteToFile($"Frequency: {_control.Frequency}");
|
LogWriter.WriteToFile($"Frequency: {_control.Frequency}");
|
||||||
LogWriter.WriteToFile($"RdsRadioText: {_control.RdsRadioText}");
|
LogWriter.WriteToFile($"RdsRadioText: {_control.RdsRadioText}");
|
||||||
LogWriter.WriteToFile($"RdsProgramService: {_control.RdsProgramService}");
|
LogWriter.WriteToFile($"RdsProgramService: {_control.RdsProgramService}");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user