aboutsummaryrefslogtreecommitdiffstats
path: root/hipchat-stfu.pl
diff options
context:
space:
mode:
Diffstat (limited to 'hipchat-stfu.pl')
-rw-r--r--hipchat-stfu.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/hipchat-stfu.pl b/hipchat-stfu.pl
index 22c288c..1695ca0 100644
--- a/hipchat-stfu.pl
+++ b/hipchat-stfu.pl
@@ -27,6 +27,12 @@ sub prettify_hipchat {
# Trim whitespace between words
$input =~ s/(\s| ){2,}/ /g;
+ # Remove Priority
+ $input =~ s/Priority://g;
+
+ # Remove Status
+ $input =~ s/Status://g;
+
# Construct start message
if ($link) {
$input =~ s/Created by (.+)$/($1) ($link)/g;