Merge pull request #6816 from jacklehamster/master

Add PR to fix null pointer exception.
This commit is contained in:
Zeke Chan 2024-07-23 16:52:37 +08:00 committed by GitHub
commit 994389d041
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -409,7 +409,9 @@ var FX = new Class({
pipeline = pipeline.pop();
}
pipeline.controller = fx;
if (pipeline) {
pipeline.controller = fx;
}
return fx;
}