Expand my Community achievements bar.

The following has evaluated to null or missing: ==> liql("SELECT id, body, board.id, board.title, board.view_href, board_relative_id, subject, author.view_href, author.id, author.login, author.rank, author.avatar.profile, author.id, conversation.last_post_time_friendly, metrics, replies.count(*), kudos.sum(weight), conversation.style, conversation.solved, depth, is_solution, user_context, teaser, post_time, post_time_friendly, view_href FROM messages ${query} LIMIT ${pageSize} OFFSET ${(pageNumber - 1) * pageSize}").data.items [in template "get-topics.ftl" at line 437, column 25] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign messages = liql("SELECT id, b... [in template "get-topics.ftl" in macro "topicsPage" at line 437, column 5] - Reached through: @getTopics.topicsPage [in template "topics-page" at line 13, column 7] ----