Open Haakjvork opened 8 years ago
Requests are not signed because of Line 366 in ovh.es5.js : if (path.indexOf('/auth') < 0) {
That 'if' shouldn't exist at all, right?
@Haakjvork Nope it's the contrary If /auth isn't in path path.indexOf('/auth') should return -1 so the condition is valid. Thus all requests are signed except ones corresponding to /auth
/auth
path.indexOf('/auth')
Requests are not signed because of Line 366 in ovh.es5.js : if (path.indexOf('/auth') < 0) {
That 'if' shouldn't exist at all, right?