For example (FTB), get_contrib_count('ImmortalPharaoh7') returns the expected data, get_contrib_count('ImmortalPharaoh7 ') throws an error. get_userlists('editcount', 'ImmortalPharaoh7 ') returns the expected data. However, because get_contrib_count, and likely others, check for username equality its find call does not return anything. I'm not sure how we could handle this without sacrificing data accuracy.
For example (FTB),
get_contrib_count('ImmortalPharaoh7')
returns the expected data,get_contrib_count('ImmortalPharaoh7 ')
throws an error.get_userlists('editcount', 'ImmortalPharaoh7 ')
returns the expected data. However, because get_contrib_count, and likely others, check for username equality itsfind
call does not return anything. I'm not sure how we could handle this without sacrificing data accuracy.