diff options
| author | LLLL Colonq <llll@colonq> | 2026-04-26 23:47:18 -0400 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2026-04-26 23:47:18 -0400 |
| commit | 75e005e81b73d8471f16dc5fad7bbdc312bdbfe7 (patch) | |
| tree | 1ad7d61b04c44fc52b453aef44868a42012f3551 /src/gizmo/wasp-aoc.el | |
| parent | cf266a56f30daae8b9af7c9bc3267c61b1973192 (diff) | |
Diffstat (limited to 'src/gizmo/wasp-aoc.el')
| -rw-r--r-- | src/gizmo/wasp-aoc.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gizmo/wasp-aoc.el b/src/gizmo/wasp-aoc.el index 4c287add..c6875048 100644 --- a/src/gizmo/wasp-aoc.el +++ b/src/gizmo/wasp-aoc.el @@ -10,7 +10,7 @@ (require 'request) (require 'wasp-sensitive) -(defcustom w/aoc-leaderboard-url "https://adventofcode.com/2024/leaderboard/private/view/3307583.json" +(defcustom w/aoc-leaderboard-url "https://adventofcode.com/2025/leaderboard/private/view/3307583.json" "URL for Advent of Code API." :type '(string) :group 'wasp) @@ -35,6 +35,7 @@ ("ctrl_o" . "control-o") ("whimsicallymade" . "aecepoglu") ("chromosundrift" . "christo") + ("partycatlol" . "papercatlol") )) (defun w/aoc-max-stars () @@ -55,7 +56,9 @@ Pass the resulting JSON to K." :type "GET" :headers `(("Cookie" . ,(format "session=%s" w/sensitive-aoc-session-cookie))) - :parser #'json-parse-buffer + :parser + (lambda () + (json-parse-buffer)) :success (cl-function (lambda (&key data &allow-other-keys) |
