Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
fix: Add missing session payload properties
Browse files Browse the repository at this point in the history
Fixes #149.
  • Loading branch information
bengourley committed Jun 22, 2018
1 parent c9dd108 commit 1014005
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/sessions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ module.exports = (Configuration) => {
const payload = {
notifier: notifier,
device: { hostname: Configuration.hostname },
app: { version: Configuration.appVersion || undefined },
app: {
version: Configuration.appVersion || undefined,
type: Configuration.appType || undefined,
releaseStage: Configuration.releaseStage || undefined
},
sessionCounts: sessions
}

Expand Down

0 comments on commit 1014005

Please sign in to comment.