Skip to content

Commit 044fd1c

Browse files
committed
fix: invalid function when login
1 parent 53d700b commit 044fd1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

leetcode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Keywords: extensions, tools
77
;; URL: https://github.com/kaiwk/leetcode.el
88
;; Package-Requires: ((emacs "26") (dash "2.16.0") (graphql "0.1.1") (spinner "1.7.3") (aio "1.0"))
9-
;; Version: 0.1.5
9+
;; Version: 0.1.6
1010

1111
;; This program is free software; you can redistribute it and/or modify
1212
;; it under the terms of the GNU General Public License as published by
@@ -128,7 +128,7 @@ The elements of :problems has attributes:
128128
(defconst leetcode--api-try (concat leetcode--base-url "/problems/%s/interpret_solution/"))
129129

130130

131-
(defsubst leetcode--referer (value)
131+
(defun leetcode--referer (value)
132132
"It will return an alist as the HTTP Referer Header.
133133
VALUE should be the referer."
134134
(cons "Referer" value))
@@ -165,7 +165,7 @@ VALUE should be the referer."
165165
secret))
166166
(plist-get found :save-function)))))
167167

168-
(defsubst leetcode--multipart-form-data (name value)
168+
(defun leetcode--multipart-form-data (name value)
169169
`("file"
170170
("name" . ,name)
171171
("filedata" . ,value)

0 commit comments

Comments
 (0)