Post tweets also when reaching the 30-day fix timeout

The check |action.Reason == "disclosureDeadline"| is unnecessary since
we also want to post tweets after the 30-day fix timeout.

Change-Id: I28c5f49d73129d25a6546918cac278836ff1eaed
diff --git a/vulnzybot.go b/vulnzybot.go
index 1c10799..a70ade3 100644
--- a/vulnzybot.go
+++ b/vulnzybot.go
@@ -261,7 +261,7 @@
 		return fmt.Errorf("Error trying to perform action type %s, for reason %s: %v", action.Type, action.Reason, err)
 	}
 
-	if twtrClient != nil && action.Reason == "disclosureDeadline" && action.Type == "disclosure" {
+	if twtrClient != nil && action.Type == "disclosure" {
 		err := postTweet(report, twtrClient, ctx)
 		if err != nil {
 			return fmt.Errorf("Error trying to publish tweet: %v", err)