diff options
-rwxr-xr-x | rh-bin/listdropboxes.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rh-bin/listdropboxes.cgi b/rh-bin/listdropboxes.cgi index 61e85d9..2eabf22 100755 --- a/rh-bin/listdropboxes.cgi +++ b/rh-bin/listdropboxes.cgi @@ -50,7 +50,7 @@ if(!defined $username) { ($result, $status, $errorstring) = RHRD::rddb::check_token($ctx, $username, $token); if($result == 1) { $responsecode = 200; - @dropboxes = RHRD::rddb::get_dropboxes($ctx, $username, $type); + @dropboxes = RHRD::rddb::get_dropboxes($ctx, $username, undef, $type); if(!defined $dropboxes[0] && defined $dropboxes[1]) { $responsecode = 500; $status = $dropboxes[1]; |