Skip to content

Commit 3f0b44a

Browse files
csharpfritzmozts2005
authored andcommitted
Fixed Routing issues
1 parent 6301abb commit 3f0b44a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Fritz.StreamTools/Startup.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ public void Configure(IApplicationBuilder app, IHostEnvironment env, IConfigurat
5353

5454
app.UseStaticFiles();
5555

56+
app.UseRouting();
57+
5658
app.UseEndpoints(endpoints =>
5759
{
5860

Fritz.Twitch/PubSub/Proxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ protected virtual void Dispose(bool disposing) {
221221
if (!_DisposedValue) {
222222
if (disposing) {
223223
_PingTimer.Dispose();
224-
_PongTimer.Dispose();
224+
_PongTimer?.Dispose();
225225
}
226226

227227
_Socket.Dispose();

0 commit comments

Comments
 (0)