Closed fspegni closed 1 year ago
The functions updateUser and replaceUser in the database.ts file (here) seems to point towards wrong urls:
updateUser
replaceUser
database.ts
... path: `/api/user/${encodeURIComponent(username)}`, ...
instead of:
... path: `/_api/user/${encodeURIComponent(username)}`, ...
(note the underscore in /_api)
/_api
The functions
updateUser
andreplaceUser
in thedatabase.ts
file (here) seems to point towards wrong urls:instead of:
(note the underscore in
/_api
)