diff options
Diffstat (limited to 'src/guff/post-model.cr')
-rw-r--r-- | src/guff/post-model.cr | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/guff/post-model.cr b/src/guff/post-model.cr index 46e2dca..4a20db8 100644 --- a/src/guff/post-model.cr +++ b/src/guff/post-model.cr @@ -143,13 +143,13 @@ module Guff ":offset": ((page - 1) * limit).to_s, ":limit": limit.to_s, }), tmpl_args) do |row| - rows << row + rows << Post.new(row) nil end end # return result - Results(Hash(String, ::SQLite3::Value)).new( + Results(Post).new( page: page, limit: limit, num_rows: num_rows, @@ -172,7 +172,6 @@ module Guff " private def get_tags_filter(tag_sets : Array(Array(String))) - p tag_sets (tag_sets.size > 0) ? template(:tags, { "sql": tag_sets.map { |tags| template(:tags, { |