diff --git a/src/adapters/TelnetAdapter.ts b/src/adapters/TelnetAdapter.ts index 2619d23..b740b67 100644 --- a/src/adapters/TelnetAdapter.ts +++ b/src/adapters/TelnetAdapter.ts @@ -5,7 +5,7 @@ import { rokuDeploy } from 'roku-deploy'; import { PrintedObjectParser } from '../PrintedObjectParser'; import type { BSDebugDiagnostic } from '../CompileErrorProcessor'; import { CompileErrorProcessor } from '../CompileErrorProcessor'; -import type { RendezvousHistory, RendezvousTracker } from '../RendezvousTracker'; +import type { RendezvousTracker } from '../RendezvousTracker'; import type { ChanperfData } from '../ChanperfTracker'; import { ChanperfTracker } from '../ChanperfTracker'; import type { SourceLocation } from '../managers/LocationManager'; diff --git a/src/debugSession/BrightScriptDebugSession.ts b/src/debugSession/BrightScriptDebugSession.ts index 3b14588..ca77b6d 100644 --- a/src/debugSession/BrightScriptDebugSession.ts +++ b/src/debugSession/BrightScriptDebugSession.ts @@ -319,7 +319,7 @@ export class BrightScriptDebugSession extends BaseDebugSession { util.log(`Connecting to Roku via telnet at ${this.launchConfiguration.host}:${this.launchConfiguration.brightScriptConsolePort}`); } - // await this.initRendezvousTracking(); + await this.initRendezvousTracking(); this.createRokuAdapter(this.rendezvousTracker); await this.connectRokuAdapter();