diff options
author | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-20 14:09:27 -0500 |
---|---|---|
committer | Jonathan Leech-Pepin <jonathan.leechpepin@gmail.com> | 2014-11-20 14:09:27 -0500 |
commit | a32e103ff075a81b34752e0027052e23a82c462b (patch) | |
tree | f607d07b23ca86af7f8d03616947ac6531cf0495 /sx-request.el | |
parent | 69632894d25a916b14d3cb1602da057e4fd95c08 (diff) |
Properly return a nil entry when falling back
sx-request-make returns a nested list (or vector of lists). Return
`'(())` to ensure it is an acceptable response.
Diffstat (limited to 'sx-request.el')
-rw-r--r-- | sx-request.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sx-request.el b/sx-request.el index 6673e48..8686216 100644 --- a/sx-request.el +++ b/sx-request.el @@ -120,7 +120,7 @@ This is for UI generation when the associated API call would require authentication. Currently returns nil." - nil) + '(())) ;;; Support Functions |