User:Polygnotus/Scripts/SortByEditcount.js: Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 199:
try {
const editCount = await getUserEditCount(userInfo.username);
results.push(`${userInfo.original}: ${editCount.toLocaleString()} edits`);
console.log(`✓ ${userInfo.username}: ${editCount.toLocaleString()} edits`);
} catch (error) {
console.error(`Failed to get edit count for ${userInfo.username}:`, error);
results.push(`${userInfo.original}: ERROR - ${error.message}`);
errors.push(userInfo.username);
}