summaryrefslogtreecommitdiff
path: root/bin/icli
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-01-25 18:52:53 +0100
committerDaniel Friesel <derf@finalrewind.org>2014-01-25 18:52:53 +0100
commit08da44369e0b6fa281bbe41afa4ba9f95718c041 (patch)
treeb2bd3f32ca7ef8942967283736f36a638360e3e2 /bin/icli
parent8af975edfba64c92564d9cbfcee611679d918624 (diff)
Do not throw warning when encountering an empty contact group
Diffstat (limited to 'bin/icli')
-rwxr-xr-xbin/icli2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/icli b/bin/icli
index 2df7ac8..3d7af82 100755
--- a/bin/icli
+++ b/bin/icli
@@ -373,7 +373,7 @@ sub read_objects_line {
}
when ('contactgroup') {
${$ref}->{contactgroups}->{ $cache->{contactgroup_name} }
- = [ split( m{, *}, $cache->{members} ) ];
+ = [ split( m{, *}, $cache->{members} // q{} ) ];
}
when (
[