1
0
Fork 0

- fixed a regression that made the program crashs when adding an attachment to a post.

This commit is contained in:
cage 2021-06-05 21:47:37 +02:00
parent 02b96790ac
commit c361ecc679
1 changed files with 3 additions and 0 deletions

View File

@ -313,6 +313,9 @@ this exact quantity would go beyond the length or rows or zero."
(push new-row reversed-old-rows))
(setf rows (reverse reversed-old-rows)))))
(defmethod append-new-rows ((object row-oriented-widget) (new-rows line))
(append-new-rows object (list new-rows)))
(defmethod map-rows ((object row-oriented-widget) (function function)
&key &allow-other-keys)
(mapcar function (rows object)))