Skip to content

Commit

Permalink
Anchored overlay to the current logged in user (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
csharpfritz authored Sep 25, 2023
1 parent 990159a commit bd182b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TagzApp.Web/Hubs/MessageHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public async Task SendMessageToOverlay(string tag, string provider, string provi

if (message is null) return;

await Clients.All
await Clients.User(Context.UserIdentifier)
.SendAsync("DisplayOverlay", (ContentModel)message);
}

Expand Down

0 comments on commit bd182b0

Please sign in to comment.