Adjusts call to parent::execute() to pass null as the third argument, rather than false. This prevents a TypeError from being thrown when ever the application attempts to pull live stats or test the API connection.
I can also confirm this works, as I've applied this same fix to my local instances. You can also use [] instead of null as the third parameter, since an array is expected.
Description
Closes #564
Adjusts call to
parent::execute()
to pass null as the third argument, rather than false. This prevents aTypeError
from being thrown when ever the application attempts to pull live stats or test the API connection.