Jaxel
Well-known member
Can you try replacing line 329:
With:
Tell me if that fixes it.
Code:
usort($channels ?: [], function($a, $b) { return($a['position'] > $b['position']); });
With:
Code:
$channels = $channels ?: [];
usort($channels, function($a, $b) { return($a['position'] > $b['position']); });
Tell me if that fixes it.