diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-04-29 12:00:00 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-04-29 12:00:00 (GMT) |
commit | 98323c1bf0d2b9c4f0b60e8dc256a15911602b6b (patch) | |
tree | 11d98da6b911fd46b3b86e392f72edf0249ab9c0 /rhimport | |
parent | db51fc7641c5c3c7055df8424a85e8c55dceb7cd (diff) |
check size if playlist before import
Diffstat (limited to 'rhimport')
-rwxr-xr-x | rhimport | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -267,7 +267,7 @@ sub start_import_gui() $log = rhimport::clear_carts($dbh, $group, $to_cart, $gui_progress_cb); } my $import_log; - ($ret, $import_log) = rhimport::import_playlist($file, $dropbox, $user, $gui_progress_cb, $gui_error_cb); + ($ret, $import_log) = rhimport::import_playlist($file, $dropbox, $user, rhimport::get_num_carts($dbh, $group) ,$gui_progress_cb, $gui_error_cb); $log .= $import_log; } else { $log = rhimport::clear_carts($dbh, $group, $to_cart, $gui_progress_cb); @@ -443,7 +443,7 @@ if($POOL) { } my $import_log; - ($ret, $import_log) = rhimport::import_playlist($FILE, $DROPBOX, $user, 0, $cl_error_cb); + ($ret, $import_log) = rhimport::import_playlist($FILE, $DROPBOX, $user, rhimport::get_num_carts($dbh, $group), 0, $cl_error_cb); $log .= $import_log; } else { $log = rhimport::clear_carts($dbh, $group, $to_cart); |