]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
baculum: Tweak change regex flags for logs parser
authorMarcin Haba <marcin.haba@bacula.pl>
Sat, 30 Jan 2021 08:25:51 +0000 (09:25 +0100)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:03:24 +0000 (09:03 +0100)
gui/baculum/protected/Web/JavaScript/misc.js

index a63415c01a3d330c3a15119e1eea41c1a09bad47..516105e28e9a7041011961fc007f37682c26e8a0 100644 (file)
@@ -813,13 +813,13 @@ var MsgEnvelope = {
        },
        issue_regex: { // @TODO: add more regexes
                warning: [
-                       /Cannot find any appendable volumes/g,
-                       /Please mount read Volume/g,
-                       /Please mount append Volume/g
+                       /Cannot find any appendable volumes/i,
+                       /Please mount read Volume/i,
+                       /Please mount append Volume/i
                ],
                error: [
-                       /ERR=/g,
-                       /error: /ig
+                       /ERR=/i,
+                       /error: /i
                ]
        },
        init: function() {