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 | 2a794c1d0b0d230c517bb03ae2ee2ed45b7ef785 (patch) | |
tree | 11d98da6b911fd46b3b86e392f72edf0249ab9c0 /rhimport | |
parent | 08b97b640b2184c6ff286bd7e5a8989bd807c49e (diff) |
check size if playlist before import
git-svn-id: https://svn.helsinki.at/rhimport/trunk@59 7c65635b-ec39-4f67-a626-873dbafdd612
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); |