mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:27:24 +01:00
do not send any customize+ data if customize+ is not present
This commit is contained in:
parent
e9822b9490
commit
93cea7dd74
2 changed files with 9 additions and 5 deletions
|
|
@ -204,9 +204,9 @@ public sealed class IpcManager : DisposableMediatorSubscriberBase
|
|||
}).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
public async Task<string> GetCustomizePlusScaleAsync(IntPtr character)
|
||||
public async Task<string?> GetCustomizePlusScaleAsync(IntPtr character)
|
||||
{
|
||||
if (!CheckCustomizePlusApi()) return string.Empty;
|
||||
if (!CheckCustomizePlusApi()) return null;
|
||||
var scale = await _dalamudUtil.RunOnFrameworkThread(() =>
|
||||
{
|
||||
var gameObj = _dalamudUtil.CreateGameObject(character);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue