built-in replace call does not typecheck arguments
replace(ent.id, ajaxcall(c));
compile error because UUID type is passed, workaround:
Submitted by Danny Groenewegen on 27 May 2021 at 10:23replace(ent.id.toString(), ajaxcall(c));
Log in to post comments