Temporary fix for linkshell names not appearing

This commit is contained in:
Infi
2024-06-11 22:21:21 +02:00
parent 41e5a80179
commit 625d7596d3
3 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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);
}