From 3b0f6c47b591ef2a2a1925dcf9dbe2d96daafa71 Mon Sep 17 00:00:00 2001 From: Karl Cordes Date: Wed, 9 Sep 2020 17:28:11 +1000 Subject: [PATCH] Fix bug in vault picking up jobs for Queensland and Overseas --- app/vendors/shells/vault.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/vendors/shells/vault.php b/app/vendors/shells/vault.php index 41182314..4c91e289 100755 --- a/app/vendors/shells/vault.php +++ b/app/vendors/shells/vault.php @@ -424,7 +424,7 @@ class VaultShell extends Shell { preg_match("/CMCPO\d+/", $subject, $output); } else if($type == 'job') { - preg_match("/(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)\d+(N|V|W|S|T|NT|ACT)J\d+/", $subject, $output); + preg_match("/(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)\d+(N|V|W|S|T|NT|ACT|Q|O)J\d+/", $subject, $output); } foreach($output as $match) {