Skip to content

Commit

Permalink
Fix uniqueWikiCounts
Browse files Browse the repository at this point in the history
  • Loading branch information
Universal-Omega authored Nov 13, 2024
1 parent c9b2c7b commit c3ffd93
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions maintenance/checkSwiftContainers.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,8 @@ private function findUnmatchedContainers( array $containers ): array {
$uniqueContainerCounts[$containerName]++;

if ( !isset( $uniqueWikiCounts[$dbName] ) ) {
$uniqueWikiCounts[$dbName] = 0;
$uniqueWikiCounts[$dbName] = 1;
}

$uniqueWikiCounts[$dbName]++;
}
}
}
Expand Down

0 comments on commit c3ffd93

Please sign in to comment.