Skip to content

Commit 7374ba0

Browse files
committed
forge--pull-topic(github): Fix data narrowing
Closes #808.
1 parent bbecd89 commit 7374ba0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lisp/forge-github.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,11 +375,11 @@
375375
:noerror t
376376
:callback (lambda (data)
377377
(let-alist data
378-
(cond ((setq data .data.repository.discussion)
378+
(cond ((setq data .repository.discussion)
379379
(forge--update-discussion repo data))
380-
((setq data .data.repository.issue)
380+
((setq data .repository.issue)
381381
(forge--update-issue repo data))
382-
((setq data .data.repository.pullRequest)
382+
((setq data .repository.pullRequest)
383383
(forge--update-pullreq repo data))))
384384
(forge-refresh-buffer))))
385385

0 commit comments

Comments
 (0)