Error "Enclosing block should never be called" when use Stomp

In UE 5.7

when use Stomp

there is an error:

LogWindows: Error: appError called: Assertion failed: !“Enclosing block should never be called” [File:D:\build++UE5\Sync\Engine\Source\Runtime\Core\Private\UObject\UnrealNames.cpp] [Line: 4528]

in function FLazyName::Resolve(), not specify LiteralType

the reason is in Engine\Source\Runtime\Online\Stomp\Private\StompCommand.cpp()

const FLazyName HeartbeatCommand = FLazyName();

may be change to

const FLazyName HeartbeatCommand = FLazyName(““);

please fix it

I encountered the same issue when using Stomp in UE5.8, indicating that the official has not made any modifications to it. I modified the

const FLazyName HeartbeatCommand = FLazyName("");

in StompCommand.cpp by copying the Stomp module of the system and putting it into the Source of my own network layer plugin; To fix this issue.