From e94caca7cf452de60ad097429c3c76ed46c701e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@sedlistka.cz> Date: Thu, 29 Aug 2019 22:18:03 +0200 Subject: [PATCH] Bugfix --- lib/RVVote/GraphAPI.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RVVote/GraphAPI.pm b/lib/RVVote/GraphAPI.pm index c3a56b8..3397dd5 100644 --- a/lib/RVVote/GraphAPI.pm +++ b/lib/RVVote/GraphAPI.pm @@ -50,7 +50,7 @@ sub get_group_members { next MEMBER if ! ref $res2->json eq 'ARRAY'; $member = $res2->json; - (undef, $member->{lastname}) = split /\W+/ $member->{username_clean} + (undef, $member->{lastname}) = split /\W+/, $member->{username_clean} push @members, $member; } -- GitLab