summaryrefslogtreecommitdiff
path: root/rhimport-btl
diff options
context:
space:
mode:
Diffstat (limited to 'rhimport-btl')
-rwxr-xr-xrhimport-btl7
1 files changed, 3 insertions, 4 deletions
diff --git a/rhimport-btl b/rhimport-btl
index eee9285..ad177b9 100755
--- a/rhimport-btl
+++ b/rhimport-btl
@@ -71,10 +71,9 @@ my $to_cart = $allowed_dbs[0]->{'TO_CART'};
my @today = Date::Calc::Today();
-my $dow = Date::Calc::Day_of_Week(@today);
my @import_date = Date::Calc::Add_Delta_Days(@today, 7);
@import_date = Date::Calc::Standard_to_Business(@import_date);
-$import_date[2] = 1;
+$import_date[2] = 2;
my @broadcast_date = @import_date;
$broadcast_date[2] = 5;
@@ -85,8 +84,8 @@ print "today: " . Date::Calc::Date_to_Text(@today) . "\n";
print "day of next Radio Helsinki broadcast: " . Date::Calc::Date_to_Text(@import_date) . "\n";
print "ending of current broadcast cycle: " . Date::Calc::Date_to_Text(@broadcast_date) . "\n";
-my $id = sprintf("%04d-%02d-%02d", $import_date[0], $import_date[1], $import_date[2]);
-my $bd = sprintf("%04d-%02d-%02d", $broadcast_date[0], $broadcast_date[1], $broadcast_date[2]);
+my $id = sprintf("%04d-%02d-%02d", @import_date);
+my $bd = sprintf("%04d-%02d-%02d", @broadcast_date);
my $bdfile = sprintf("%02d%02d%02d-btlv128\.mp3", $broadcast_date[0]%100, $broadcast_date[1], $broadcast_date[2]);
print "looking for files like '$bdfile' in RSS Feed\n";