diff options
-rw-r--r-- | stack-question.el | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/stack-question.el b/stack-question.el index 2b6cd1f..66a4ea3 100644 --- a/stack-question.el +++ b/stack-question.el @@ -29,12 +29,14 @@ (require 'stack-filter) (require 'stack-lto) -(defvar stack-question-browse-filter - (stack-filter-compile - nil - '(user.profile_image shallow_user.profile_image))) - -(stack-filter-store 'question-browse stack-question-browse-filter) +;; I don't know why this is here, but it was causing an API request on require. +(defvar stack-question-browse-filter nil + ;; (stack-filter-compile + ;; nil + ;; '(user.profile_image shallow_user.profile_image)) + ) + +;; (stack-filter-store 'question-browse stack-question-browse-filter) (defun stack-question-get-questions (site &optional page) "Get the page PAGE of questions from SITE." |