Skip to content

Commit 167c238

Browse files
committed
Fix up OAuth console shell after bad code removal.
1 parent ed3eb85 commit 167c238

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

samples/Samples.ConsoleShell/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ static async Task PerformOperations(string? userHandle, string? password, string
109109

110110
Debugger.Break();
111111
}
112-
return;
113112
}
114113
}
115114
}

samples/Samples.ConsoleShellOAuth/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
using idunno.Bluesky;
1414

1515
using Samples.Common;
16+
using System.Diagnostics;
1617

1718
namespace Samples.ConsoleShellOAuth
1819
{
@@ -134,9 +135,8 @@ static async Task PerformOperations(string? loginHandle, string? password, strin
134135

135136
// Your code goes here.
136137

137-
}
138-
139-
await agent.Logout(cancellationToken: cancellationToken);
138+
Debugger.Break();
139+
await agent.Logout(cancellationToken: cancellationToken);
140140
}
141141
}
142142
}

0 commit comments

Comments
 (0)