Added another null check. Hoping to resolve the crash soon.
This commit is contained in:
parent
92c381c01d
commit
37e27213a7
BIN
sigIRCv2.jar
BIN
sigIRCv2.jar
Binary file not shown.
@ -13,8 +13,10 @@ public class UpdateEvent implements ActionListener{
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent ev) {
|
public void actionPerformed(ActionEvent ev) {
|
||||||
UpdateScrollingText();
|
if (ev!=null) {
|
||||||
UpdateAuthenticationCountdownMessage();
|
UpdateScrollingText();
|
||||||
|
UpdateAuthenticationCountdownMessage();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateAuthenticationCountdownMessage() {
|
private void UpdateAuthenticationCountdownMessage() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user