Merge branch 'minor-next' into major-next

This commit is contained in:
Dylan K. Taylor
2025-02-18 01:26:08 +00:00
7 changed files with 29 additions and 75 deletions

View File

@ -704,7 +704,7 @@ class Server{
public function removeOp(string $name) : void{
$lowercaseName = strtolower($name);
foreach($this->operators->getAll() as $operatorName => $_){
foreach(Utils::promoteKeys($this->operators->getAll()) as $operatorName => $_){
$operatorName = (string) $operatorName;
if($lowercaseName === strtolower($operatorName)){
$this->operators->remove($operatorName);