Line 263 of FilteredStream is throwing an exception because jsonTweet is null.
```
var tweetObject = _jsSerializer.Deserialize<Dictionary<string, object>>(jsonTweet);
if (!String.IsNullOrEmpty(jsonTweet))
{
```
Shouldn't this be inside the if statement?
Comments: ** Comment from web user: linvi **
```
var tweetObject = _jsSerializer.Deserialize<Dictionary<string, object>>(jsonTweet);
if (!String.IsNullOrEmpty(jsonTweet))
{
```
Shouldn't this be inside the if statement?
Comments: ** Comment from web user: linvi **
Thank you for reporting the issue. It now has been corrected.