diff --git a/sigIRCv2.jar b/sigIRCv2.jar index 0c42ac7..953bca5 100644 Binary files a/sigIRCv2.jar and b/sigIRCv2.jar differ diff --git a/src/sig/modules/TwitchModule.java b/src/sig/modules/TwitchModule.java index a9ceb0c..74fcce4 100644 --- a/src/sig/modules/TwitchModule.java +++ b/src/sig/modules/TwitchModule.java @@ -453,7 +453,7 @@ public class TwitchModule extends Module{ if (textYbounds.getX()) { DrawUtils.drawCenteredText(g, sigIRC.panel.programFont, (int)bounds.getX()+sigIRC.twitchmodule_followerText_centerX+xAlteration, (int)bounds.getY()+sigIRC.twitchmodule_followerText_Y+yAlteration, Color.BLACK, announcedFollowerUser.getDisplayName()); } - if (!announcedFollowerUser.getBio().equalsIgnoreCase("null")) { + if (announcedFollowerUser.getBio()!=null && !announcedFollowerUser.getBio().equalsIgnoreCase("null")) { if (followerUserLogo!=null) { final int image_size = sigIRC.twitchmodule_newfollowerImgLogoSize; int img_startx = (int)(bounds.getX()+bounds.getWidth()-ticksPassed*3-(image_size+4));