Skip to content

Commit 1d69b1e

Browse files
authored
Merge pull request #114 from AlgorithmicGames/patch
Fix reference to Backend class in fetch call
2 parents efcaff3 + a835c74 commit 1d69b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Backend.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22
class Backend {
33
static call(module='', data) {
4-
return fetch(new Request(BackendService.getBackend()+'/'+module), {
4+
return fetch(new Request(Backend.getBackend()+'/'+module), {
55
method: 'POST',
66
body: JSON.stringify(data)
77
});

0 commit comments

Comments
 (0)