Exactly my problem. I’ve modified your code to this which solves the problem for me:
preg_match('#.*?://.*?(?:(?=/)|.$)#', home_url(), $matches);
$this->absolute_prefix = $matches[0];
You can play with the above regex here to prove that it works:
Test RegEx