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