diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-06 15:08:22 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-06 15:08:22 -0800 |
commit | 650b67e118c6672c65f1b0fab684695284127e9b (patch) | |
tree | debc6a1d90a38e80f839643ce35f98ec89498dd8 /system/api/external.go | |
parent | 054f01662788fb3bb7fd2808980e59c3a918e9e3 (diff) |
substituting "_{specifier}" => "__{specifier}" so users can add their own types with "_" as a separator and not face conflicts
Diffstat (limited to 'system/api/external.go')
-rw-r--r-- | system/api/external.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/api/external.go b/system/api/external.go index 2e9597e..0d1ea03 100644 --- a/system/api/external.go +++ b/system/api/external.go @@ -132,7 +132,7 @@ func externalContentHandler(res http.ResponseWriter, req *http.Request) { return } } else { - spec = "_pending" + spec = "__pending" } _, err = db.SetContent(t+spec+":-1", req.PostForm) |