Skip to content

Commit

Permalink
Merge pull request #48 from dzoech/fix/use-correct-notification-tag-s…
Browse files Browse the repository at this point in the history
…chema

Fix backend notification service using invalid tag
  • Loading branch information
dzoech authored Aug 6, 2022
2 parents 70139e8 + f87ee12 commit 19acf6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ public async Task<string> SendAsync(string message, Guid receiverId)
/// An installation for the Notifications Hub automatically creates a tag for the defined user id.
/// Example tag: $UserId:{93fab134-e9ed-4a73-a106-ba6fa15f7f20}
/// </summary>
private string GetTagForUserId(Guid userId) => $"$UserId:{userId}";
private string GetTagForUserId(Guid userId) => "$UserId:{" + userId + "}";
}
}

0 comments on commit 19acf6d

Please sign in to comment.