mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 16:47:22 +01:00
potentially fix error display on loading mcdf with empty c+ data
This commit is contained in:
parent
b7d8877491
commit
f34edb78a1
1 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,7 @@ using MareSynchronos.Services;
|
|||
using MareSynchronos.Services.Mediator;
|
||||
using MareSynchronos.Utils;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using System.Text;
|
||||
using CharacterData = MareSynchronos.API.Data.CharacterData;
|
||||
|
||||
namespace MareSynchronos.PlayerData.Export;
|
||||
|
|
@ -120,7 +121,7 @@ public class MareCharaFileManager : DisposableMediatorSubscriberBase
|
|||
}
|
||||
else
|
||||
{
|
||||
var id = await _ipcManager.CustomizePlus.SetBodyScaleAsync(tempHandler.Address, "{}").ConfigureAwait(false);
|
||||
var id = await _ipcManager.CustomizePlus.SetBodyScaleAsync(tempHandler.Address, Convert.ToBase64String(Encoding.UTF8.GetBytes("{}"))).ConfigureAwait(false);
|
||||
_gposeCustomizeObjects.Add(id);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue