MoveToFolder broken in v2.4
Status: Beta
Brought to you by:
jdla
There is a typo in v2.4 that breaks MoveToFolder. The patch below fixes it.
--- GetLive.pl 2011-07-09
+++ GetLive.pl 2011-07-09
@@ -1191,7 +1191,7 @@
}
# Let's die the hard way if we do not find that folder.
- if ($TargetFolderFound) {
+ if (not $TargetFolderFound) {
$Self->Log("Folder with name '$TargetFolderName' used in MoveToFolder could not be located.\n",stderr => 1);
return;
}
Obviously. Thanks for pointing out. I will correct in next release and/or CVS.
Jos