Fix attempting to record Splatfest votes for non-SplatNet 3 users

This commit is contained in:
Ellie 2026-01-03 20:14:39 +00:00
parent 28109239a3
commit 5eb9bddc0d
No known key found for this signature in database
GPG Key ID: 9DBD8FA906936CFF

View File

@ -212,7 +212,7 @@ export async function handler(argv: ArgumentsCamelCase<Arguments>) {
const update_interval_fest_voting_status_record = 60 * 60 * 1000; // 60 minutes
const recordFestVotes = async (is_force_early = false) => {
const users = await Promise.all(user_naids.map(id => server.getSplatNet3User(id)));
const users = await Promise.all(user_naids_splatnet3.map(id => server.getSplatNet3User(id)));
debug('Checking for new fest votes to record', is_force_early);