You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a fresh install (by hand, gist.el and dependencies are fresh checkouts, Emacs 24.3.50.1), all my already existing private gists, and new ones created using the web interface are listed as public in gist-list. When editing and saving those private Gists using gist.el, they turn public on GitHub. Private Gists created via gist.el are not affected by this.
The text was updated successfully, but these errors were encountered:
The possible values from the github gist API for public is false, true
or null. json-read-from-string decodes these as true, json-false or
json-null.
We have been treating json-false as as truth value, which leads to this
mismatch.
This commit also fixes the issue where public gists created through this
package are setting the gist public attribute to null instead of false.
Fixesdefunkt#45
After a fresh install (by hand, gist.el and dependencies are fresh checkouts, Emacs 24.3.50.1), all my already existing private gists, and new ones created using the web interface are listed as public in gist-list. When editing and saving those private Gists using gist.el, they turn public on GitHub. Private Gists created via gist.el are not affected by this.
The text was updated successfully, but these errors were encountered: