We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc5c91a commit b739c01Copy full SHA for b739c01
plugin_Relay/RelayDevice.cs
@@ -146,11 +146,12 @@ public void OnLoad()
146
VerticalAlignment = VerticalAlignment.Stretch
147
};
148
149
- Task.Delay(3000).ContinueWith(_ =>
150
- {
151
- Host?.Log("Trying to connect to the cached remote server...");
152
- Initialize(); // Initialize the plugin now
153
- });
+ if (!(RelayService.Instance?.IsBackfeed ?? false))
+ Task.Delay(3000).ContinueWith(_ =>
+ {
+ Host?.Log("Trying to connect to the cached remote server...");
+ Initialize(); // Initialize the plugin now
154
+ });
155
}
156
157
public void Initialize()
0 commit comments