From 2e7e05a81d21180d393df104b3b436f5fe45c110 Mon Sep 17 00:00:00 2001 From: Ashod Nakashian Date: Sat, 17 Nov 2012 13:55:32 -0500 Subject: [PATCH] Untitled books aren't skipped, they are named "Untitled". --- amazon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amazon.php b/amazon.php index b05719f..276a2f6 100644 --- a/amazon.php +++ b/amazon.php @@ -270,7 +270,7 @@ function hmac($key, $data, $hashfunc='sha256') $title = get_attribute_cdata($edition->ItemAttributes->Title); if (empty($title)) { - continue; + $title = __('Untitled', NRTD); } $author = get_attribute_cdata($edition->ItemAttributes->Author);