diff options
| author | 2016-02-09 08:51:02 -0700 | |
|---|---|---|
| committer | 2016-02-09 08:51:02 -0700 | |
| commit | cfa47b2ecd2f4ddca3a4719f33a3d50aee94614a (patch) | |
| tree | d7394b92d85d308b09c59497fd14830ad9488180 /lib | |
| parent | e3bc4466116494dc8c008b9dde0c729ee5b72003 (diff) | |
Bugfix
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/ASM/Util.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ASM/Util.pm b/lib/ASM/Util.pm index e96aebd..e6519de 100644 --- a/lib/ASM/Util.pm +++ b/lib/ASM/Util.pm @@ -336,7 +336,7 @@ sub notRestricted { sub accountToNicks { my ($module, $account) = @_; $account =~ s/^\$a://; - return $::sa{$account}; + return $::sa{$account} // []; } return 1; |
