diff --git a/src/Tgstation.Server.Host/Components/Session/SessionPersistor.cs b/src/Tgstation.Server.Host/Components/Session/SessionPersistor.cs index a916ea792b..d661564723 100644 --- a/src/Tgstation.Server.Host/Components/Session/SessionPersistor.cs +++ b/src/Tgstation.Server.Host/Components/Session/SessionPersistor.cs @@ -83,6 +83,7 @@ namespace Tgstation.Server.Host.Components.Session RebootState = reattachInformation.RebootState, LaunchSecurityLevel = reattachInformation.LaunchSecurityLevel, LaunchVisibility = reattachInformation.LaunchVisibility, + TopicPort = reattachInformation.TopicPort, }; db.ReattachInformations.Add(dbReattachInfo); @@ -116,6 +117,7 @@ namespace Tgstation.Server.Host.Components.Session dbReattachInfo.RebootState = reattachInformation.RebootState; dbReattachInfo.LaunchSecurityLevel = reattachInformation.LaunchSecurityLevel; dbReattachInfo.LaunchVisibility = reattachInformation.LaunchVisibility; + dbReattachInfo.TopicPort = reattachInformation.TopicPort; await db.Save(cancellationToken);