Closed marcorocca closed 3 years ago
Thank you for the report. I guess I didn't do enough testing when I moved that part of the UI code to a separate class.
I'll merge your fix shortly.
Thank you, are there any previsions of a release including these fixes?
Sure, I'll make a release shortly.
Hello, I have discovered that there is an error in the
handleManualCheck()
function of thePuc_v4p10_Plugin_Ui
class: it will check:if ( ($update === null) && !empty($this->lastRequestApiErrors) ) {
But there is no lastRequestApiErrors property in the class. It must be:
if ( ($update === null) && !empty($this->updateChecker->getLastRequestApiErrors()) ) {
I have tried to correct this behaviour as there are a few points where it uses
$this->lastRequestApiErrors
and I will send you a pull request if you want.