Temporary fix for linkshell names not appearing
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<Version>1.26.1</Version>
|
||||
<Version>1.26.2</Version>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
@@ -30,3 +30,4 @@ changelog: |-
|
||||
- Fix flags not working in reply mode
|
||||
- Force the main chat log to be always open
|
||||
- Prevent emotes inside auto translation
|
||||
- Make Linkshells appear in selection again
|
||||
|
||||
@@ -129,7 +129,8 @@ internal sealed unsafe class Chat : IDisposable
|
||||
if (lsInfo == null)
|
||||
return null;
|
||||
|
||||
var utf = instance->GetLinkshellName(lsInfo);
|
||||
// TODO APIX: lsInfo type changed to Entry
|
||||
var utf = instance->GetLinkshellName(*(ulong**)lsInfo);
|
||||
return utf == null ? null : MemoryHelper.ReadStringNullTerminated((nint) utf);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user