You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 14, 2025. It is now read-only.
Using the more up to date wakeasp_inc fork of this, I was suddenly getting an error 500 "the controller must return a response null given" appended to my files i got with $TBS->Show(OPENTBS_DOWNLOAD, $filename);
I was able to fix this by adding this empty response type from this answer: https://stackoverflow.com/a/73239817/1832105
and sending it after the tbs->show
Using the more up to date wakeasp_inc fork of this, I was suddenly getting an error 500 "the controller must return a response null given" appended to my files i got with $TBS->Show(OPENTBS_DOWNLOAD, $filename);
I was able to fix this by adding this empty response type from this answer:
https://stackoverflow.com/a/73239817/1832105
and sending it after the tbs->show
Hope this helps anybody.