remove toUpper

master
Christopher 2020-07-10 17:10:49 +02:00
parent 4067bdc3c8
commit a8e544765e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace OpenSim.Modules.Appearance2Avatar
if(asset != null) if(asset != null)
{ {
String _appearanceNotecard = new ASCIIEncoding().GetString(asset.Data).ToUpper(); String _appearanceNotecard = new ASCIIEncoding().GetString(asset.Data);
OSDMap appearanceOsd = (OSDMap)OSDParser.DeserializeLLSDXml(_appearanceNotecard); OSDMap appearanceOsd = (OSDMap)OSDParser.DeserializeLLSDXml(_appearanceNotecard);
AvatarAppearance appearance = new AvatarAppearance(); AvatarAppearance appearance = new AvatarAppearance();