Fix app context

This commit is contained in:
Dev 2023-12-27 20:08:57 +00:00
parent 6d601f85cd
commit 01127d651e

View File

@ -24,7 +24,7 @@ export class ApplicationContext
{ {
if (this.variables.has(type)) if (this.variables.has(type))
{ {
return this.variables.get(type)?.getTail()?.getValue(); return this.variables.get(type)?.getTail();
} }
} }