Skip to content

Commit

Permalink
Small fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Apr 18, 2020
1 parent eaa9fcb commit 54d9442
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
6 changes: 1 addition & 5 deletions Server/Services/RCDeviceSocketHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,12 @@ namespace Remotely.Server.Services
{
public class RCDeviceSocketHub : Hub
{
public RCDeviceSocketHub(DataService dataService,
IHubContext<BrowserSocketHub> browserHub,
public RCDeviceSocketHub(IHubContext<BrowserSocketHub> browserHub,
IHubContext<RCBrowserSocketHub> rcBrowserHub,
IHubContext<DeviceSocketHub> deviceSocketHub,
RemoteControlSessionRecorder rcSessionRecorder,
ApplicationConfig appConfig)
{
DataService = dataService;
BrowserHub = browserHub;
RCBrowserHub = rcBrowserHub;
DeviceHub = deviceSocketHub;
Expand Down Expand Up @@ -48,8 +46,6 @@ private Size CurrentScreenSize
Context.Items["CurrentScreenSize"] = value;
}
}
private DataService DataService { get; }

private IHubContext<DeviceSocketHub> DeviceHub { get; }

private IHubContext<RCBrowserSocketHub> RCBrowserHub { get; }
Expand Down
1 change: 1 addition & 0 deletions Server/wwwroot/scripts/RemoteControl/UI.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 54d9442

Please sign in to comment.