Skip to content

Commit 485c371

Browse files
committed
Include width/height in config check message to be more helpful.
1 parent d537560 commit 485c371

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/Service/CheckConfigService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ public function checkAffiliations(): ConfigCheckItem
735735
} elseif ($width !== 64 || $height !== 64) {
736736
// For other images we check the size
737737
$result = 'W';
738-
$desc .= sprintf("Logo for %s is not 64x64\n", $affiliation->getShortname());
738+
$desc .= sprintf("Logo for %s is not 64x64 but %dx%d\n", $affiliation->getShortname(), $width, $height);
739739
}
740740
}
741741
}

0 commit comments

Comments
 (0)