Fixed Messaging Bug (inversed a if statement)

This commit is contained in:
2026-04-13 22:57:39 -04:00
parent fba86881ec
commit a56e246095
2 changed files with 9 additions and 3 deletions

View File

@@ -264,7 +264,7 @@ public partial class MainPage : ContentPage
if (pyload is null)
return;
if (pyload.RecipientUsername == _username)
if (pyload.RecipientUsername != _username)
return;
Console.WriteLine($"[{_username}] received encrypted payload for {pyload.RecipientUsername}");