File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4
4
- fixed #12327: HttpProxy does not clean up cookie jar storage locations
5
5
- fixed #12329: FlatDiscount Sku forces you to enter in negative numbers for price
6
6
- fixed #12334: Company name with : in it breaks email sender identity
7
+ - fixed #12328: invalid wgaccess file in uploads
7
8
8
9
7.10.24
9
10
- fixed #12318: asset error causes asset manager to fail
Original file line number Diff line number Diff line change @@ -69,9 +69,9 @@ sub handler {
69
69
}
70
70
else {
71
71
my $privs = JSON-> new-> decode($fileContents );
72
- @users = @{ $privs -> {users } };
73
- @groups = @{ $privs -> {groups } };
74
- @assets = @{ $privs -> {assets } };
72
+ @users = @{ $privs -> {users } || [] };
73
+ @groups = @{ $privs -> {groups } || [] };
74
+ @assets = @{ $privs -> {assets } || [] };
75
75
$state = $privs -> {state };
76
76
}
77
77
You can’t perform that action at this time.
0 commit comments