Small fix to a cast in list parsing
parent
930b2ec602
commit
52a5425628
|
@ -4436,7 +4436,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
if ((cindex > index) || (cindex == -1))
|
if ((cindex > index) || (cindex == -1))
|
||||||
{
|
{
|
||||||
cindex = index;
|
cindex = index;
|
||||||
cdeli = (string)delimiters[i];
|
cdeli = delimiters[i].ToString();
|
||||||
}
|
}
|
||||||
dfound = dfound || found;
|
dfound = dfound || found;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue