Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/TickerQ.Dashboard/Authentication/AuthService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;

Check failure on line 5 in src/TickerQ.Dashboard/Authentication/AuthService.cs

View workflow job for this annotation

GitHub Actions / PR Build and Test

The type or namespace name 'AspNetCore' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
using Microsoft.Extensions.Logging;

namespace TickerQ.Dashboard.Authentication;
Expand Down Expand Up @@ -35,7 +35,7 @@
// Authentication performed by host application
if (_config.Mode == AuthMode.Host)
{
return AuthenticateHostAsync(context);
return await AuthenticateHostAsync(context);
}

// Get authorization header or query parameter
Expand Down
Loading