From 17e2dffdb22b57db5205d047dc08b45d1064fbe5 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 25 Jun 2026 11:42:43 -0500 Subject: [PATCH] AAAAAA --- Content.Server/Fax/FaxSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs index ad8f4195f41..3344b69594f 100644 --- a/Content.Server/Fax/FaxSystem.cs +++ b/Content.Server/Fax/FaxSystem.cs @@ -593,7 +593,7 @@ public sealed class FaxSystem : EntitySystem // This will seem odd that we're doing the same if statement twice BUT if its not in the known fax machine list, the // sending fax might not have been online when the current fax machine was refreshed/init'd. So, if its already known, // we don't need to refresh. But if its not known, let's attempt to refresh first, then check the fromAddress in the KnownFaxes. - if (fromAddress != null && component.KnownFaxes.TryGetValue(fromAddress, out var _)) + if (fromAddress != null && !component.KnownFaxes.TryGetValue(fromAddress, out var _)) Refresh(uid, component); // END DeltaV