change case

Signed-off-by: lonode <32384862+lonode@users.noreply.github.com>
This commit is contained in:
lonode
2026-05-21 17:42:21 +02:00
parent 3517ba3039
commit abaea7b4c2

View File

@@ -15,7 +15,7 @@ readonly class DockerHubManager {
// Official Docker Hub images need the library/ prefix when using the registry API directly.
private function NormalizeImageName(string $name): string {
private function normalizeImageName(string $name): string {
if (!str_contains($name, '/')) {
return 'library/' . $name;
}
@@ -32,7 +32,7 @@ readonly class DockerHubManager {
}
// If one of the links below should ever become outdated, we can still upgrade the mastercontainer via the webinterface manually by opening '/api/docker/getwatchtower'
$name = $this->NormalizeImageName($name);
$name = $this->normalizeImageName($name);
try {
$authTokenRequest = $this->guzzleClient->request(