Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Fix #1963, never force login/initialization on sendEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
ianb committed Nov 14, 2016
1 parent 02d175a commit 4dea856
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion addon/lib/req.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ exports.sendEvent = function (action, label, options) {
exports.request(`${main.getBackend()}/event`, {
method: "POST",
content: JSON.stringify({event, action, label, options}),
contentType: "application/json"
contentType: "application/json",
ignoreLogin: true
});
};

Expand Down

0 comments on commit 4dea856

Please sign in to comment.