Skip to content

Commit

Permalink
Fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
chromiumboy committed Oct 13, 2024
1 parent 2beb807 commit 810d328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Telephone/TelephoneSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ private void SetTelephoneMicrophoneState(Entity<TelephoneComponent> entity, bool
if (_idCardSystem.TryFindIdCard(uid, out var idCard))
{
var presumedName = string.IsNullOrWhiteSpace(idCard.Comp.FullName) ? null : idCard.Comp.FullName;
var presumedJob = idCard.Comp.JobTitle?.ToLowerInvariant();
var presumedJob = idCard.Comp.JobTitle;

if (presumedName != null)
{
Expand Down

0 comments on commit 810d328

Please sign in to comment.