Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Lukas R
on
Ooh, very helpful! That's just saved my theme as well! That's one for '101 on ATVO scripting' book 😁👌

Emmanuel Suter wrote:
I think i've got the same problem on a lot of my scripts ....
To understand, you replace
IEntitySessionResult result = (IEntitySessionResult) value;


by

var result = value as IEntitySessionResult;
if (result == null)
{
    return "";
}

??