Skip to content

Commit

Permalink
Remove trailing white space
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-Holbrook committed Feb 9, 2024
1 parent 2e19f2c commit bb7f2f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adapters/DebugProtocolAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -718,8 +718,8 @@ export class DebugProtocolAdapter {
return this.resolve('threads', async () => {
let threads: Thread[] = [];
let threadsResponse: ThreadsResponse;
// sometimes roku threads are stubborn and haven't stopped yet, causing our ThreadsRequest to fail with "not stopped".
// A nice simple fix for this is to just send a "pause" request again, which seems to fix the issue.
// sometimes roku threads are stubborn and haven't stopped yet, causing our ThreadsRequest to fail with "not stopped".
// A nice simple fix for this is to just send a "pause" request again, which seems to fix the issue.
// we'll do this a few times just to make sure we've tried our best to get the list of threads.
for (let i = 0; i < 3; i++) {
threadsResponse = await this.client.threads();
Expand Down

0 comments on commit bb7f2f5

Please sign in to comment.