blob: aec678ec2243ed111c3c6cf09dffa3a297ad786b [file] [log] [blame]
<?php
require('config_avatars.php');
$username = $_GET['username'] ?? null;
if (!array_key_exists($username, $USERS)) {
http_response_code(404);
exit();
}
header('Location: '.$USERS[$username]);