chore: log which title is being selected when loading aniwatch

This commit is contained in:
2024-10-27 08:41:16 -04:00
parent 5ef3e8c970
commit 34958cfa69

View File

@@ -53,8 +53,10 @@ export const findBestMatchingTitle = (
console.log(title.english, englishScore);
console.log(title.userPreferred, userPreferredScore);
if (userPreferredScore >= englishScore) {
console.log("User preferred", userPreferredBestMatch);
return userPreferredBestMatch;
} else {
console.log("English", englishBestMatch);
return englishBestMatch;
}
};