I came up with the same problem. Here is my solution:
simple-twitter-tweets.php, after line 206, add this line
$screen_name = $tweet->user->screen_name;
Then in the same file, change the link on line 244 from this:
<a href="https://www.twitter.com/<?php echo $name; ?>
to this:
<a href="https://www.twitter.com/<?php echo $screen_name; ?>
It works fine for me!