purge cache when TL retrieval fails, fix #79

This commit is contained in:
Nicolas Constant
2021-02-01 20:07:53 -05:00
parent 52e2868deb
commit ec420346b6
3 changed files with 51 additions and 33 deletions

View File

@@ -38,5 +38,10 @@ namespace BirdsiteLive.Twitter
return user;
}
public void PurgeUser(string username)
{
_userCache.Remove(username);
}
}
}