Removed polyfills from tracker. Switched to XMLHttpRequest.

This commit is contained in:
Mike Cao 2020-09-18 14:16:57 -07:00
parent 023adafa39
commit b19889638a
2 changed files with 18 additions and 3 deletions

View file

@ -23,6 +23,7 @@ export const useSession = use(async (req, res, next) => {
try {
session = await getSession(req);
} catch (e) {
console.error(e);
return serverError(res, e.message);
}