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
{{ message }}
This repository has been archived by the owner on May 18, 2021. It is now read-only.
I looked at trying to fix this, but I'm struggling because I don't know backbone.js.
At models/event.coffee#L15 the id is set to a value with a / in it. Unfortunately, when the request is generated, this / is URL-encoded to %2F, so you end up with requests like:
I believe we had found a way around this in some of the other models (likely overriding the sync method, or specifying the update URL). I'll revisit it when I get a chance; I must have missed adding the fix to the event model.
I looked at trying to fix this, but I'm struggling because I don't know backbone.js.
At models/event.coffee#L15 the
id
is set to a value with a/
in it. Unfortunately, when the request is generated, this/
is URL-encoded to%2F
, so you end up with requests like:DELETE https://apiurl/events/client_name%2Fcheck_name
And that of course, results in a 404, because
client_name%2Fcheck_name
is definitely not a valid client name.The text was updated successfully, but these errors were encountered: