aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sx-filter.el2
-rw-r--r--sx-question-list.el4
2 files changed, 4 insertions, 2 deletions
diff --git a/sx-filter.el b/sx-filter.el
index d341032..a3f6861 100644
--- a/sx-filter.el
+++ b/sx-filter.el
@@ -112,6 +112,7 @@ return the compiled filter."
((question body_markdown
bounty_amount
comments
+ creation_date
answers
answer_count
score
@@ -142,6 +143,7 @@ return the compiled filter."
post_id
comment_id)
(answer answer_id
+ creation_date
last_editor
last_activity_date
link
diff --git a/sx-question-list.el b/sx-question-list.el
index c72dc0d..1b7fe5a 100644
--- a/sx-question-list.el
+++ b/sx-question-list.el
@@ -184,8 +184,8 @@ Also see `sx-question-list-refresh'."
" "
(let-alist .owner
(format "%15s %5s"
- (propertize .display_name 'face 'sx-question-list-user)
- (propertize (number-to-string .reputation)
+ (propertize (or .display_name "") 'face 'sx-question-list-user)
+ (propertize (number-to-string (or .reputation 0))
'face 'sx-question-list-reputation)))
(propertize " " 'display "\n")))))))