Skip to content

Commit 85480a4

Browse files
committed
Added trailing slash.
1 parent 6ca9b4c commit 85480a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
class Backend{
33
static call(module='', data){
44
let backend = Backend.getBackend();
5-
return fetch(new Request(backend.path+'/'+module), {
5+
return fetch(new Request(backend.path+'/'+module+'/'), {
66
method: 'POST',
77
headers: new Headers(backend.headers),
88
body: JSON.stringify(data)

0 commit comments

Comments
 (0)