Skip to content

Commit f342705

Browse files
committed
Truncate annotation page label instead of error
Truncates annotationPageLabel to be at most maxAnnotationPageLabelLength so the error is not thrown if annotation page label is too long. Fixes: #131
1 parent 2cf66c3 commit f342705

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

model/Items.inc.php

+5-2
Original file line numberDiff line numberDiff line change
@@ -1849,12 +1849,15 @@ public static function updateFromJSON(Zotero_Item $item,
18491849
case 'annotationText':
18501850
case 'annotationComment':
18511851
case 'annotationColor':
1852-
case 'annotationPageLabel':
18531852
case 'annotationSortIndex':
18541853
case 'annotationPosition':
18551854
$item->$key = $val;
18561855
break;
1857-
1856+
1857+
case 'annotationPageLabel':
1858+
$item->$key = substr($val, 0, Zotero_Items::$maxAnnotationPageLabelLength);
1859+
break;
1860+
18581861
case 'dateModified':
18591862
if ($apiVersion >= 3 && $tmpZoteroClientDateModifiedHack) {
18601863
$item->setField($key, $val);

0 commit comments

Comments
 (0)