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